Skip to content

Commit

Permalink
gtr: Fix typo in comments
Browse files Browse the repository at this point in the history
  • Loading branch information
jstemmer committed Sep 30, 2022
1 parent ce2d6b2 commit e939e4f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gtr/gtr.go
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ func TrimPrefixSpaces(line string, indent int) string {
// from a test.
prefixLen := strings.IndexFunc(line, func(r rune) bool { return r != ' ' })
if prefixLen%4 == 0 {
// Use the subtest level to trim a consistenly sized prefix from the
// Use the subtest level to trim a consistently sized prefix from the
// output lines.
for i := 0; i <= indent; i++ {
line = strings.TrimPrefix(line, " ")
Expand Down

0 comments on commit e939e4f

Please sign in to comment.