]> granicus.if.org Git - python/commitdiff
Fix typo reported by Jesse W on docs@
authorZachary Ware <zachary.ware@gmail.com>
Mon, 16 Jun 2014 16:13:01 +0000 (11:13 -0500)
committerZachary Ware <zachary.ware@gmail.com>
Mon, 16 Jun 2014 16:13:01 +0000 (11:13 -0500)
Doc/howto/functional.rst

index 0ff9eeef02e9f5bcb8a35413496d454b2696296d..c6d6a56a7ea7bae81401dd9a46deda15f87b4f75 100644 (file)
@@ -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
 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: