Skip to content

Commit a162f63

Browse files
committed
fixup! fmt
1 parent af74345 commit a162f63

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cli/cliutil/levenshtein/levenshtein.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ func Matches(needle string, maxDistance int, haystack ...string) (matches []stri
1818
return matches
1919
}
2020

21-
var ErrMaxDist error = xerrors.New("levenshtein: maxDist exceeded")
21+
var ErrMaxDist = xerrors.New("levenshtein: maxDist exceeded")
2222

2323
// Distance returns the edit distance between a and b using the
2424
// Wagner-Fischer algorithm.

0 commit comments

Comments
 (0)