diff options
author | Georg Brandl <georg@python.org> | 2012-01-14 16:06:53 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2012-01-14 16:06:53 (GMT) |
commit | c86bb00ee5f2176efec9c62cd9bc03dd9b84743f (patch) | |
tree | dfc71639ad477b439e704e5e178d31601c5cc6fe /Doc/reference | |
parent | 9a5606886c3a74e2429589065f82344884a3d9d0 (diff) | |
download | cpython-c86bb00ee5f2176efec9c62cd9bc03dd9b84743f.zip cpython-c86bb00ee5f2176efec9c62cd9bc03dd9b84743f.tar.gz cpython-c86bb00ee5f2176efec9c62cd9bc03dd9b84743f.tar.bz2 |
Fix label names.
Diffstat (limited to 'Doc/reference')
-rw-r--r-- | Doc/reference/expressions.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/reference/expressions.rst b/Doc/reference/expressions.rst index b3372a5..a7c66d3 100644 --- a/Doc/reference/expressions.rst +++ b/Doc/reference/expressions.rst @@ -1048,9 +1048,9 @@ must be plain or long integers. The arguments are converted to a common type. .. _comparisons: .. _is: -.. _isnot: +.. _is not: .. _in: -.. _notin: +.. _not in: Comparisons =========== |