[Python-checkins] Fix plural typo in documentation (GH-19799)

Alex Povel webhook-mailer at python.org
Wed Apr 29 18:17:19 EDT 2020


https://github.com/python/cpython/commit/fd33cdbd05d2fbe2443554a9b79155de07b0d056
commit: fd33cdbd05d2fbe2443554a9b79155de07b0d056
branch: master
author: Alex Povel <48824213+alexpovel at users.noreply.github.com>
committer: GitHub <noreply at github.com>
date: 2020-04-29T19:17:12-03:00
summary:

Fix plural typo in documentation (GH-19799)

Co-authored-by: Alex Povel <python at alexpovel.de>

files:
M Doc/faq/design.rst

diff --git a/Doc/faq/design.rst b/Doc/faq/design.rst
index df3dbf4977e01..4e3cc575ee196 100644
--- a/Doc/faq/design.rst
+++ b/Doc/faq/design.rst
@@ -651,7 +651,7 @@ Why doesn't Python have a "with" statement for attribute assignments?
 ---------------------------------------------------------------------
 
 Python has a 'with' statement that wraps the execution of a block, calling code
-on the entrance and exit from the block.  Some language have a construct that
+on the entrance and exit from the block.  Some languages have a construct that
 looks like this::
 
    with obj:



More information about the Python-checkins mailing list