Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 21f9fce

Browse files
committed
Fix typo.
1 parent 099bd52 commit 21f9fce

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

Doc/tut/tut.tex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4365,7 +4365,7 @@ \section{Generators\label{generators}}
43654365
43664366
Generators are a simple and powerful tool for creating iterators. They are
43674367
written like regular functions but use the \keyword{yield} statement whenever
4368-
they want to return data. Each time the \method{next()} is called, the
4368+
they want to return data. Each time \method{next()} is called, the
43694369
generator resumes where it left-off (it remembers all the data values and
43704370
which statement was last executed). An example shows that generators can
43714371
be trivially easy to create:

Misc/NEWS

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -416,7 +416,7 @@ Library
416416
interpreter shutdown with another exception from attempting to handle the
417417
original exception.
418418

419-
- Added Decimal.py per PEP 327.
419+
- Added decimal.py per PEP 327.
420420

421421
- Bug #981299: rsync is now a recognized protocol in urlparse that uses a
422422
"netloc" portion of a URL.

0 commit comments

Comments
 (0)