Fix various typos (#835)

This commit is contained in:
Johan Van de Wauw
2022-03-09 01:44:08 +01:00
committed by GitHub
parent e178b7b4b2
commit 8fa2a5efe4
9 changed files with 10 additions and 10 deletions

View File

@@ -31,7 +31,7 @@ func DedupStrings(list []string) []string {
return newList
}
// EqualStringSlice compare two string slices if they have equal values independ of how they are sorted
// EqualStringSlice compare two string slices if they have equal values independent of how they are sorted
func EqualStringSlice(l1, l2 []string) bool {
if len(l1) != len(l2) {
return false