Improve variable name in sample code
diff --git a/Doc/library/itertools.rst b/Doc/library/itertools.rst
index 419e8e5..05f1874 100644
--- a/Doc/library/itertools.rst
+++ b/Doc/library/itertools.rst
@@ -218,7 +218,7 @@
       def imap(function, *iterables):
           iterables = map(iter, iterables)
           while True:
-              args = [i.next() for i in iterables]
+              args = [it.next() for it in iterables]
               if function is None:
                   yield tuple(args)
               else: