]> granicus.if.org Git - python/commitdiff
Fix typo.
authorRaymond Hettinger <python@rcn.com>
Sat, 10 Jul 2004 16:11:03 +0000 (16:11 +0000)
committerRaymond Hettinger <python@rcn.com>
Sat, 10 Jul 2004 16:11:03 +0000 (16:11 +0000)
Doc/tut/tut.tex
Misc/NEWS

index 747208217a7b67509fa4cdf2367f23c0ee404dd3..b57aebec7d92913594db929dda066fc8246da868 100644 (file)
@@ -4365,7 +4365,7 @@ s
 
 Generators are a simple and powerful tool for creating iterators.  They are
 written like regular functions but use the \keyword{yield} statement whenever
-they want to return data.  Each time the \method{next()} is called, the
+they want to return data.  Each time \method{next()} is called, the
 generator resumes where it left-off (it remembers all the data values and
 which statement was last executed).  An example shows that generators can
 be trivially easy to create:
index b7a1adea3b2e6cf57588a42b47aeaf637534f30e..6cd3dcb12d17aed8afd2a236eff976851c288e32 100644 (file)
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -416,7 +416,7 @@ Library
   interpreter shutdown with another exception from attempting to handle the
   original exception.
 
-- Added Decimal.py per PEP 327.
+- Added decimal.py per PEP 327.
 
 - Bug #981299: rsync is now a recognized protocol in urlparse that uses a
   "netloc" portion of a URL.