diff options
author | delirious-lettuce <delirious.lettuce@gmail.com> | 2017-05-21 21:26:01 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2017-05-21 21:26:01 (GMT) |
commit | 0702cc01fa3dc52087a5d468fc5a4984f3697446 (patch) | |
tree | b528e3bf3c38efdb39a5810ec7b9ddfa55a82336 /Doc/reference | |
parent | cf5c1be8f6e0bc90280f66c65bb49808f01bfb3a (diff) | |
download | cpython-0702cc01fa3dc52087a5d468fc5a4984f3697446.zip cpython-0702cc01fa3dc52087a5d468fc5a4984f3697446.tar.gz cpython-0702cc01fa3dc52087a5d468fc5a4984f3697446.tar.bz2 |
[3.6] Fix typos in multiple `.rst` files (GH-1668) (#1702)
(cherry picked from commit 3378b2062c7fbb77a9b5e6d315d6b94160fac69a)
Diffstat (limited to 'Doc/reference')
-rw-r--r-- | Doc/reference/expressions.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/reference/expressions.rst b/Doc/reference/expressions.rst index 43d2690..d92be97 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 |