From 9efe21f32b7f51ca5e75d43c56b1c1f424a6403f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jure=20=C5=A0orn?= Date: Sat, 29 Dec 2018 17:02:57 +0100 Subject: [PATCH] Iterators --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 3da3616..a30e2a7 100644 --- a/README.md +++ b/README.md @@ -934,7 +934,7 @@ Itertools from itertools import * ``` -### Combinatoric Iterators +### Combinatoric iterators ```python >>> combinations('abc', 2) [('a', 'b'), ('a', 'c'), ('b', 'c')] @@ -958,7 +958,7 @@ from itertools import * (1, 0, 0), (1, 0, 1), (1, 1, 0), (1, 1, 1)] ``` -### Infinite Iterators +### Infinite iterators ```python >>> i = count(5, 2) >>> next(i), next(i), next(i)