diff --git a/Doc/library/itertools.rst b/Doc/library/itertools.rst index 7099fa0..5049d04 100644 --- a/Doc/library/itertools.rst +++ b/Doc/library/itertools.rst @@ -762,7 +762,7 @@ which incur interpreter overhead. """ Call a function repeatedly until an exception is raised. Converts a call-until-exception interface to an iterator interface. - Like __builtin__.iter(func, sentinel) but uses an exception instead + Like __builtins__.iter(func, sentinel) but uses an exception instead of a sentinel to end the loop. Examples: