From ec7c26dad2c26e4e4c33a69252654e3b1155bc7b Mon Sep 17 00:00:00 2001 From: Scott Gasch Date: Tue, 31 May 2022 18:00:09 -0700 Subject: More docs cleanup. --- string_utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'string_utils.py') 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) -- cgit v1.3