[Python-checkins] bpo-36167: fix an incorrect capitalization (GH-14482)

Miss Islington (bot) webhook-mailer at python.org
Thu Aug 29 01:47:48 EDT 2019


https://github.com/python/cpython/commit/e009a91607e7a81302b98d1b322d564ddc1fce9d
commit: e009a91607e7a81302b98d1b322d564ddc1fce9d
branch: 3.8
author: Miss Islington (bot) <31488909+miss-islington at users.noreply.github.com>
committer: GitHub <noreply at github.com>
date: 2019-08-28T22:47:42-07:00
summary:

bpo-36167: fix an incorrect capitalization (GH-14482)

(cherry picked from commit 3aa48b88c7485aca1fdfa54b3d8e53931ff067fd)

Co-authored-by: avinassh <avinassh at users.noreply.github.com>

files:
M Doc/faq/programming.rst

diff --git a/Doc/faq/programming.rst b/Doc/faq/programming.rst
index a36fa4aefe88..2ff7236df1dc 100644
--- a/Doc/faq/programming.rst
+++ b/Doc/faq/programming.rst
@@ -659,7 +659,7 @@ How can my code discover the name of an object?
 -----------------------------------------------
 
 Generally speaking, it can't, because objects don't really have names.
-Essentially, assignment always binds a name to a value; The same is true of
+Essentially, assignment always binds a name to a value; the same is true of
 ``def`` and ``class`` statements, but in that case the value is a
 callable. Consider the following code::
 



More information about the Python-checkins mailing list