From 2e0d87a247c5bd1e2be790e7cd63138c465eec57 Mon Sep 17 00:00:00 2001 From: Xiaoxi He Date: Fri, 7 Sep 2018 15:22:06 +0800 Subject: [PATCH] Fix 'wether'->'whether' Signed-off-by: Xiaoxi He --- internal/test/output/output.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/test/output/output.go b/internal/test/output/output.go index d085359c1c..42f958790f 100644 --- a/internal/test/output/output.go +++ b/internal/test/output/output.go @@ -54,7 +54,7 @@ func Contains(expected string) func(string) error { } } -// Equals returns wether the line is the same as the specified string +// Equals returns whether the line is the same as the specified string func Equals(expected string) func(string) error { return func(actual string) error { if expected == actual {