3
0

Fixed typos across the codebase (can not, cannot)

This commit is contained in:
Denis Arh
2021-03-17 17:25:05 +01:00
parent a848c7d0b8
commit 79ed77a379
94 changed files with 117 additions and 118 deletions

View File

@@ -93,7 +93,7 @@ func Assign(base TypedValue, path string, val interface{}) error {
}
default:
return fmt.Errorf("can not set value on %s with path '%s'", base.Type(), path)
return fmt.Errorf("cannot set value on %s with path '%s'", base.Type(), path)
}
}
@@ -134,7 +134,7 @@ func Select(base TypedValue, path string) (TypedValue, error) {
}
var (
failure = fmt.Errorf("can not get value from %s with path '%s'", base.Type(), path)
failure = fmt.Errorf("cannot get value from %s with path '%s'", base.Type(), path)
key string
)