]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
bpo-36167: fix an incorrect capitalization (GH-14482)
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>
Thu, 29 Aug 2019 05:49:20 +0000 (22:49 -0700)
committerGitHub <noreply@github.com>
Thu, 29 Aug 2019 05:49:20 +0000 (22:49 -0700)
(cherry picked from commit 3aa48b88c7485aca1fdfa54b3d8e53931ff067fd)

Co-authored-by: avinassh <avinassh@users.noreply.github.com>
Doc/faq/programming.rst

index f14e8cc824ef747b8fe3d6ad7aba8d59eb97aa53..a8aaebf7558ee3c257eb35f8a04efb097dc1dd11 100644 (file)
@@ -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::