diff options
author | avinassh <avinassh@users.noreply.github.com> | 2019-08-29 05:40:50 (GMT) |
---|---|---|
committer | Ned Deily <nad@python.org> | 2019-08-29 05:40:50 (GMT) |
commit | 3aa48b88c7485aca1fdfa54b3d8e53931ff067fd (patch) | |
tree | 85c422db1e153b0f5e8c8f507663461d7b5752f8 /Doc/faq/programming.rst | |
parent | 465e5d5bcbfd42be058d3584ccb421405eba1594 (diff) | |
download | cpython-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.rst | 2 |
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:: |