summaryrefslogtreecommitdiff
path: root/Doc/library
diff options
context:
space:
mode:
authorGurupad Hegde <gurupad93@gmail.com>2019-12-28 17:16:02 -0500
committerTerry Jan Reedy <tjreedy@udel.edu>2019-12-28 17:16:02 -0500
commit6c7bb38ff2799ac218e6df598b2b262f89e2bc1e (patch)
tree1c7a05153ff747a88c4462a71abc7905fc0ad597 /Doc/library
parent98f0f04b5016e63561d313a3446b7b58f2c12611 (diff)
downloadcpython-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.rst2
-rw-r--r--Doc/library/test.rst2
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)