diff -r 3d328ee18612 Doc/tutorial/controlflow.rst --- a/Doc/tutorial/controlflow.rst Mon Jan 30 13:56:20 2017 +0300 +++ b/Doc/tutorial/controlflow.rst Wed Feb 01 21:09:11 2017 +0200 @@ -142,7 +142,7 @@ We say such an object is *iterable*, that is, suitable as a target for functions and constructs that expect something from which they can obtain successive items until the supply is exhausted. We have seen that -the :keyword:`for` statement is such an *iterator*. The function :func:`list` +the :keyword:`for` statement expects an object that is iterable. The function :func:`list` is another; it creates lists from iterables::