summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2015-01-02 10:00:10 -0600
committerBenjamin Peterson <benjamin@python.org>2015-01-02 10:00:10 -0600
commit23f2567ee94d0a1eebdd8afe6f11140815fcf094 (patch)
treeb54041231f06552d9a7a8fbae8806608d2791aa1
parentc533d779727e0bad7ad5a362d7a337a0905e78c7 (diff)
downloadsix-23f2567ee94d0a1eebdd8afe6f11140815fcf094.tar.gz
use decorator directive for add_metaclass and wraps
-rw-r--r--documentation/index.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/documentation/index.rst b/documentation/index.rst
index e0ce4cc..627862a 100644
--- a/documentation/index.rst
+++ b/documentation/index.rst
@@ -243,7 +243,7 @@ functions and methods is the stdlib :mod:`py3:inspect` module.
aliased to :class:`py3:object`.)
-.. function:: wraps(wrapped, assigned=functools.WRAPPER_ASSIGNMENTS, updated=functools.WRAPPER_UPDATES)
+.. decorator:: wraps(wrapped, assigned=functools.WRAPPER_ASSIGNMENTS, updated=functools.WRAPPER_UPDATES)
This is exactly the :func:`py3:functools.wraps` decorator, but it sets the
``__wrapped__`` attribute on what it decorates as :func:`py3:functools.wraps`
@@ -320,7 +320,7 @@ Python 2 and 3.
decorator.
-.. function:: add_metaclass(metaclass)
+.. decorator:: add_metaclass(metaclass)
Class decorator that replaces a normally-constructed class with a
metaclass-constructed one. Example usage: ::