From e939e4f1208c5433ce0aed4cec28d84bbdbcda8d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=ABl=20Stemmer?= Date: Fri, 30 Sep 2022 23:07:42 +0100 Subject: [PATCH] gtr: Fix typo in comments --- gtr/gtr.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gtr/gtr.go b/gtr/gtr.go index bb05d87..e939870 100644 --- a/gtr/gtr.go +++ b/gtr/gtr.go @@ -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, " ")