]> 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 97c90c7c0b88f5522dd38f955b08c70b976684e7..1969b3210857d297814a2cc002e8926b7e334f90 100644 (file)
@@ -583,7 +583,7 @@ 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
-:meth:`~generator.send` method will be the only method used resume your
+:meth:`~generator.send` method will be the only method used to resume your
 generator function.
 
 In addition to :meth:`~generator.send`, there are two other methods on