summaryrefslogtreecommitdiffstats
path: root/Doc/howto
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2015-11-02 12:39:05 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2015-11-02 12:39:05 (GMT)
commita84f6c3dd3ef02bdbbc67b4cd1223749f3c39030 (patch)
treee8ac219e151be6bdf4ea4e3fbc229f247e0b7b4b /Doc/howto
parentd2ad5718ad955a13cf570bacad1d7800d995da33 (diff)
parentd65c9496da3485ac077fa8fd374b061afdd3605e (diff)
downloadcpython-a84f6c3dd3ef02bdbbc67b4cd1223749f3c39030.zip
cpython-a84f6c3dd3ef02bdbbc67b4cd1223749f3c39030.tar.gz
cpython-a84f6c3dd3ef02bdbbc67b4cd1223749f3c39030.tar.bz2
Issue #25523: Merge a-to-an corrections from 3.4.
Diffstat (limited to 'Doc/howto')
-rw-r--r--Doc/howto/descriptor.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/howto/descriptor.rst b/Doc/howto/descriptor.rst
index f018b0e..530f34b 100644
--- a/Doc/howto/descriptor.rst
+++ b/Doc/howto/descriptor.rst
@@ -319,7 +319,7 @@ Non-data descriptors provide a simple mechanism for variations on the usual
patterns of binding functions into methods.
To recap, functions have a :meth:`__get__` method so that they can be converted
-to a method when accessed as attributes. The non-data descriptor transforms a
+to a method when accessed as attributes. The non-data descriptor transforms an
``obj.f(*args)`` call into ``f(obj, *args)``. Calling ``klass.f(*args)``
becomes ``f(*args)``.