summaryrefslogtreecommitdiff
path: root/documentation/index.rst
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
commitce73aa38a1cb8bd244dcae1e2a78eb2ffbe6b1ae (patch)
treed56489358179cb6b54a057a8a7902329ca50de82 /documentation/index.rst
parent1d87556ce5a4d8ad55b851e6e374bd4816a26eba (diff)
downloadsix-git-ce73aa38a1cb8bd244dcae1e2a78eb2ffbe6b1ae.tar.gz
remove sentence that is no longer true
Diffstat (limited to 'documentation/index.rst')
-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):