From c0d91706bd274e05c425d2f17384cb2e779a767f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jure=20=C5=A0orn?= Date: Wed, 27 Feb 2019 13:09:09 +0100 Subject: [PATCH] Itertools --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index ba98875..f3de31f 100644 --- a/README.md +++ b/README.md @@ -236,8 +236,8 @@ from itertools import islice, count, repeat, cycle, chain ```python = count(start=0, step=1) # Counter. - = repeat( [, times]) # Returns element endlesly or times times. - = cycle() # Repeats the sequence indefinately. + = repeat( [, times]) # Returns element endlessly or times times. + = cycle() # Repeats the sequence indefinitely. ``` ```python