Another typo (in the list comprehension example).
diff --git a/Misc/NEWS b/Misc/NEWS
index 4cd443c..a16263b 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -122,7 +122,7 @@
 
     [<expression> for <variable> in <sequence>]
 
-For example, [x**2 for i in range(4)] yields the list [0, 1, 4, 9].
+For example, [i**2 for i in range(4)] yields the list [0, 1, 4, 9].
 This is more efficient than map() with a lambda.
 
 You can also add a condition: