Skip to content

Commit

Permalink
changed unit of EPS
Browse files Browse the repository at this point in the history
  • Loading branch information
danielamkaer committed Mar 18, 2020
1 parent 7150a10 commit b3cb507
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/search.go
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@ func (b *queryResultProgressBar) Update(result api.QueryResult) {
func (b *queryResultProgressBar) additionalInfoEps() string {
if !math.IsNaN(b.epsValue) {
v, suffix := prompt.AddSISuffix(b.epsValue, false)
return fmt.Sprintf("%.1f %sEPS", v, suffix)
return fmt.Sprintf("%.1f %s events/s", v, suffix)
}
return ""
}
Expand Down

0 comments on commit b3cb507

Please sign in to comment.