diff options
| author | Scott Gasch <[email protected]> | 2022-05-31 18:00:09 -0700 |
|---|---|---|
| committer | Scott Gasch <[email protected]> | 2022-05-31 18:00:09 -0700 |
| commit | ec7c26dad2c26e4e4c33a69252654e3b1155bc7b (patch) | |
| tree | e47187d4030ba562b866ba659864ac1305fe93dc /string_utils.py | |
| parent | 02302bbd9363facb59c4df2c1f4013087702cfa6 (diff) | |
More docs cleanup.
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) |
