Added a missing "is" -- noted by Grant Griffin
<grant.griffin@honeywell.com>.
diff --git a/Misc/NEWS b/Misc/NEWS
index 3fa65b2..1b38984 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -446,7 +446,7 @@
     print >> sys.stderr, "Error: bad dog!"
 
 As a special feature, if the expression used to indicate the file
-evaluates to None, the current value of sys.stdout used.  Thus:
+evaluates to None, the current value of sys.stdout is used.  Thus:
 
     print >> None, "Hello world"