fix fn name: tokenizer.infixes_finditer -> tokenizer.infix_finditer (#7606)

This commit is contained in:
Álvaro Abella Bascarán 2021-03-30 09:45:49 +02:00 committed by GitHub
parent 3ae8661085
commit 5b4dde38a3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -962,7 +962,7 @@ domain. There are six things you may need to define:
quotes, open brackets, etc.
3. A function `suffix_search`, to handle **succeeding punctuation**, such as
commas, periods, close quotes, etc.
4. A function `infixes_finditer`, to handle non-whitespace separators, such as
4. A function `infix_finditer`, to handle non-whitespace separators, such as
hyphens etc.
5. An optional boolean function `token_match` matching strings that should never
be split, overriding the infix rules. Useful for things like numbers.