Signed-off-by: Cyril Tovena <cyril.tovena@gmail.com>
This commit is contained in:
Cyril Tovena 2021-10-05 13:54:55 +02:00
parent 453cc5de75
commit 7ea8609024
No known key found for this signature in database
GPG key ID: FD8F768F9D633FB6

View file

@ -93,7 +93,7 @@ func findSetMatches(re *syntax.Regexp, base string) []string {
}
// limits the total characters that can be used to create matches.
// In some case like negation [^0-9] a lot of possibilities exists and that
// can create thousands of possible matches at which points we're better of using regexp.
// can create thousands of possible matches at which points we're better off using regexp.
if totalSet > 100 {
return nil
}