From af561c420aaea843c6213302a60bb58bc09e8c16 Mon Sep 17 00:00:00 2001 From: Tim Gates Date: Sat, 21 Dec 2019 18:55:04 +1100 Subject: [PATCH] Fix simple typo: sequencies -> sequences Closes #477 --- toolz/itertoolz.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/toolz/itertoolz.py b/toolz/itertoolz.py index e71f1eee..d2896635 100644 --- a/toolz/itertoolz.py +++ b/toolz/itertoolz.py @@ -754,7 +754,7 @@ def partition_all(n, seq): def count(seq): """ Count the number of items in seq - Like the builtin ``len`` but works on lazy sequencies. + Like the builtin ``len`` but works on lazy sequences. Not to be confused with ``itertools.count``