Commit 487a143c authored by Zachary Ware's avatar Zachary Ware

Fix typo reported by Jesse W on docs@

parent ee2cb3fa
...@@ -587,7 +587,8 @@ And here's an example of changing the counter: ...@@ -587,7 +587,8 @@ And here's an example of changing the counter:
Because ``yield`` will often be returning ``None``, you should always check for Because ``yield`` will often be returning ``None``, you should always check for
this case. Don't just use its value in expressions unless you're sure that the this case. Don't just use its value in expressions unless you're sure that the
``send()`` method will be the only method used resume your generator function. ``send()`` method will be the only method used to resume your generator
function.
In addition to ``send()``, there are two other new methods on generators: In addition to ``send()``, there are two other new methods on generators:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment