summaryrefslogtreecommitdiffstats
path: root/Doc/faq/programming.rst
diff options
context:
space:
mode:
authoravinassh <avinassh@users.noreply.github.com>2019-08-29 05:40:50 (GMT)
committerNed Deily <nad@python.org>2019-08-29 05:40:50 (GMT)
commit3aa48b88c7485aca1fdfa54b3d8e53931ff067fd (patch)
tree85c422db1e153b0f5e8c8f507663461d7b5752f8 /Doc/faq/programming.rst
parent465e5d5bcbfd42be058d3584ccb421405eba1594 (diff)
downloadcpython-3aa48b88c7485aca1fdfa54b3d8e53931ff067fd.zip
cpython-3aa48b88c7485aca1fdfa54b3d8e53931ff067fd.tar.gz
cpython-3aa48b88c7485aca1fdfa54b3d8e53931ff067fd.tar.bz2
bpo-36167: fix an incorrect capitalization (GH-14482)
Diffstat (limited to 'Doc/faq/programming.rst')
-rw-r--r--Doc/faq/programming.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/faq/programming.rst b/Doc/faq/programming.rst
index a36fa4a..2ff7236 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::