Fix 'wether'->'whether'

Signed-off-by: Xiaoxi He <xxhe@alauda.io>
This commit is contained in:
Xiaoxi He
2018-09-07 16:26:18 +08:00
parent ce4a9f8311
commit 2e0d87a247
+1 -1
View File
@@ -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 {