Skip to content

Commit bf16c8a

Browse files
committed
-
1 parent df291d9 commit bf16c8a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

source_py2/python_toolbox/cute_iter_tools.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -285,7 +285,7 @@ def fill(iterable, fill_value=None, fill_value_maker=None, length=infinity,
285285
If `length` is given, shortens the iterator to that length.
286286
287287
If `sequence_type` is given, instead of returning an iterator, this
288-
function will return a sequenceo of that type.
288+
function will return a sequence of that type.
289289
'''
290290
iterator = _fill(iterable, fill_value=fill_value,
291291
fill_value_maker=fill_value_maker,

source_py3/python_toolbox/cute_iter_tools.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -280,7 +280,7 @@ def fill(iterable, fill_value=None, fill_value_maker=None, length=infinity,
280280
If `length` is given, shortens the iterator to that length.
281281
282282
If `sequence_type` is given, instead of returning an iterator, this
283-
function will return a sequenceo of that type.
283+
function will return a sequence of that type.
284284
'''
285285
iterator = _fill(iterable, fill_value=fill_value,
286286
fill_value_maker=fill_value_maker,

0 commit comments

Comments
 (0)