summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorZachary Ware <zachary.ware@gmail.com>2014-06-16 16:13:01 (GMT)
committerZachary Ware <zachary.ware@gmail.com>2014-06-16 16:13:01 (GMT)
commit0aecc18bab0495529582acdbb3271c148b329aa8 (patch)
tree3bc6c1522830de6f976c75bbc0bf312094ad5063 /Doc
parent4802c6ee55f2721776cc9d05b1422dab85f244ce (diff)
downloadcpython-0aecc18bab0495529582acdbb3271c148b329aa8.zip
cpython-0aecc18bab0495529582acdbb3271c148b329aa8.tar.gz
cpython-0aecc18bab0495529582acdbb3271c148b329aa8.tar.bz2
Fix typo reported by Jesse W on docs@
Diffstat (limited to 'Doc')
-rw-r--r--Doc/howto/functional.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/howto/functional.rst b/Doc/howto/functional.rst
index 97c90c7..1969b32 100644
--- a/Doc/howto/functional.rst
+++ b/Doc/howto/functional.rst
@@ -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