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

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

index a36fa4aefe8864fc30d110bf5f901ecba54bc38d..2ff7236df1dc0e8e312a9cfdd8e6be27390967d4 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::