diff --git a/pep-0201.txt b/pep-0201.txt index 71454d9ae38..7b1c77af33b 100644 --- a/pep-0201.txt +++ b/pep-0201.txt @@ -46,8 +46,8 @@ Lockstep For-Loops Lockstep for-loops are non-nested iterations over two or more sequences, such that at each pass through the loop, one element from each sequence is taken to compose the target. This behavior can -already be accomplished in Python through the use of the map() built- -in function:: +already be accomplished in Python through the use of the map() built-in +function:: >>> a = (1, 2, 3) >>> b = (4, 5, 6)