diff options
author | Gurupad Hegde <gurupad93@gmail.com> | 2019-12-28 17:16:02 -0500 |
---|---|---|
committer | Terry Jan Reedy <tjreedy@udel.edu> | 2019-12-28 17:16:02 -0500 |
commit | 6c7bb38ff2799ac218e6df598b2b262f89e2bc1e (patch) | |
tree | 1c7a05153ff747a88c4462a71abc7905fc0ad597 /Doc/library | |
parent | 98f0f04b5016e63561d313a3446b7b58f2c12611 (diff) | |
download | cpython-git-6c7bb38ff2799ac218e6df598b2b262f89e2bc1e.tar.gz |
bpo-39136: Fixed typos (GH-17720)
funtion -> function; configuraton -> configuration; defintitions -> definitions;
focusses -> focuses; necesarily -> necessarily; follwing -> following;
Excape -> Escape,
Diffstat (limited to 'Doc/library')
-rw-r--r-- | Doc/library/ast.rst | 2 | ||||
-rw-r--r-- | Doc/library/test.rst | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/Doc/library/ast.rst b/Doc/library/ast.rst index baf563f5d7..190d9286ef 100644 --- a/Doc/library/ast.rst +++ b/Doc/library/ast.rst @@ -168,7 +168,7 @@ and classes for traversing abstract syntax trees: back with :func:`ast.parse`. .. warning:: - The produced code string will not necesarily be equal to the original + The produced code string will not necessarily be equal to the original code that generated the :class:`ast.AST` object. .. versionadded:: 3.9 diff --git a/Doc/library/test.rst b/Doc/library/test.rst index 73b3fe5cf0..54ad620d7d 100644 --- a/Doc/library/test.rst +++ b/Doc/library/test.rst @@ -1577,7 +1577,7 @@ script execution tests. The :mod:`test.support.bytecode_helper` module provides support for testing and inspecting bytecode generation. -The module defines the follwing class: +The module defines the following class: .. class:: BytecodeTestCase(unittest.TestCase) |