summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2014-07-12 19:02:45 -0700
committerBenjamin Peterson <benjamin@python.org>2014-07-12 19:02:45 -0700
commit880f96fc580b88666b13f79f80c43e0e9d365f93 (patch)
treed56489358179cb6b54a057a8a7902329ca50de82
parentc30a93f56be333e6afbf9f15e6639f5fe5df015d (diff)
downloadsix-880f96fc580b88666b13f79f80c43e0e9d365f93.tar.gz
remove sentence that is no longer true
-rw-r--r--documentation/index.rst4
1 files changed, 1 insertions, 3 deletions
diff --git a/documentation/index.rst b/documentation/index.rst
index 25d3495..02f3898 100644
--- a/documentation/index.rst
+++ b/documentation/index.rst
@@ -292,9 +292,7 @@ Python 2 and 3.
.. function:: add_metaclass(metaclass)
Class decorator that replaces a normally-constructed class with a
- metaclass-constructed one. Unlike :func:`with_metaclass`,
- :func:`add_metaclass` does not create an intermediate base class between the
- class being created and its bases. Example usage: ::
+ metaclass-constructed one. Example usage: ::
@add_metaclass(Meta)
class MyClass(object):