summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2009-06-06 17:51:31 +0000
committerGeorg Brandl <georg@python.org>2009-06-06 17:51:31 +0000
commite3b9b5e4ede02d5d85698fabc5f28af25d4d56b4 (patch)
treed5d211ccce59d7d000efc02c09899e675abe5ec1
parent4c324b9801dfd7939820ffb3ba50583300f2ceeb (diff)
downloadcpython-git-e3b9b5e4ede02d5d85698fabc5f28af25d4d56b4.tar.gz
#6204: use a real reference instead of "see later".
-rw-r--r--Doc/tutorial/controlflow.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/tutorial/controlflow.rst b/Doc/tutorial/controlflow.rst
index 3c6d16468d..55462d9cf3 100644
--- a/Doc/tutorial/controlflow.rst
+++ b/Doc/tutorial/controlflow.rst
@@ -285,7 +285,7 @@ This example, as usual, demonstrates some new Python features:
and ``methodname`` is the name of a method that is defined by the object's type.
Different types define different methods. Methods of different types may have
the same name without causing ambiguity. (It is possible to define your own
- object types and methods, using *classes*, as discussed later in this tutorial.)
+ object types and methods, using *classes*, see :ref:`tut-classes`)
The method :meth:`append` shown in the example is defined for list objects; it
adds a new element at the end of the list. In this example it is equivalent to
``result = result + [b]``, but more efficient.