diff options
Diffstat (limited to 'string_utils.py')
| -rw-r--r-- | string_utils.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/string_utils.py b/string_utils.py index 6ce4c50..4127079 100644 --- a/string_utils.py +++ b/string_utils.py @@ -1893,7 +1893,7 @@ def ngrams(txt: str, n: int): def ngrams_presplit(words: Sequence[str], n: int): """ - Same as :meth:ngrams but with the string pre-split. + Same as :meth:`ngrams` but with the string pre-split. """ return list_utils.ngrams(words, n) |
