From 76d05ec3a2c2452d1afd73707cb3b9ac1173f296 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=80=9Celderlabs=E2=80=9D?= Date: Tue, 12 Mar 2019 21:02:40 -0400 Subject: [PATCH] Typo corrections --- disco/util/functional.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/disco/util/functional.py b/disco/util/functional.py index d2e0273..0a06048 100644 --- a/disco/util/functional.py +++ b/disco/util/functional.py @@ -9,10 +9,10 @@ def take(seq, count): Args ---- - seq : sequnce or generator - The sequnce to take elements from. + seq : sequence or generator + The sequence to take elements from. count : int - The number of elments to take. + The number of elements to take. """ for _ in range(count): i = next(seq, NO_MORE_SENTINEL)