aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordelirious-lettuce <delirious.lettuce@gmail.com>2017-05-19 14:37:57 -0600
committerSerhiy Storchaka <storchaka@gmail.com>2017-05-19 23:37:57 +0300
commit3378b2062c7fbb77a9b5e6d315d6b94160fac69a (patch)
tree7cfeb0047ea14f4a77c4fb5a6fd4a233120c96e0 /Doc/reference/expressions.rst
parentRemove duplicate line in Lib/http/client.py (#1665) (diff)
downloadcpython-3378b2062c7fbb77a9b5e6d315d6b94160fac69a.tar.gz
cpython-3378b2062c7fbb77a9b5e6d315d6b94160fac69a.tar.bz2
cpython-3378b2062c7fbb77a9b5e6d315d6b94160fac69a.zip
Fix typos in multiple `.rst` files (#1668)
Diffstat (limited to 'Doc/reference/expressions.rst')
-rw-r--r--Doc/reference/expressions.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/reference/expressions.rst b/Doc/reference/expressions.rst
index b065d198b1a..ddcbd5567c1 100644
--- a/Doc/reference/expressions.rst
+++ b/Doc/reference/expressions.rst
@@ -636,7 +636,7 @@ which are used to control the execution of a generator function.
without yielding another value, an :exc:`StopAsyncIteration` exception is
raised by the awaitable.
If the generator function does not catch the passed-in exception, or
- raises a different exception, then when the awaitalbe is run that exception
+ raises a different exception, then when the awaitable is run that exception
propagates to the caller of the awaitable.
.. index:: exception: GeneratorExit