Skip to content

Commit

Permalink
...
Browse files Browse the repository at this point in the history
  • Loading branch information
kovidgoyal committed Nov 10, 2023
1 parent 258e13e commit 5596ed9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tools/cmd/benchmark/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ func simple_ascii() (r result, err error) {
if err != nil {
return result{}, err
}
return result{"Simple ascii characters", len(data), duration}, nil
return result{"Only ASCII chars", len(data), duration}, nil
}

func ascii_with_csi() (r result, err error) {
Expand Down Expand Up @@ -137,7 +137,7 @@ func ascii_with_csi() (r result, err error) {
if err != nil {
return result{}, err
}
return result{"CSI codes with ASCII text", len(out), duration}, nil
return result{"CSI codes with ASCII chars", len(out), duration}, nil
}

func images() (r result, err error) {
Expand Down

0 comments on commit 5596ed9

Please sign in to comment.