diff --git a/Doc/tutorial/classes.rst b/Doc/tutorial/classes.rst index 9ab003d5cd3dd5..df94d036d3b977 100644 --- a/Doc/tutorial/classes.rst +++ b/Doc/tutorial/classes.rst @@ -344,7 +344,7 @@ function that "belongs to" an object. Valid method names of an instance object depend on its class. By definition, all attributes of a class that are function objects define corresponding -methods of its instances. So in our example, ``x.f`` is a valid method +methods of its instances. So in our :ref:`previous example `, ``x.f`` is a valid method reference, since ``MyClass.f`` is a function, but ``x.i`` is not, since ``MyClass.i`` is not. But ``x.f`` is not the same thing as ``MyClass.f`` --- it is a *method object*, not a function object.