summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2010-07-01 17:45:52 (GMT)
committerBenjamin Peterson <benjamin@python.org>2010-07-01 17:45:52 (GMT)
commit52a70c4a126220d550bf0a9f429fc0dc837fb8c9 (patch)
tree9ca392eed740285d3ff801279b81bd2f609daf6d
parent7b670624ac5412b81353c168295de33250935d77 (diff)
downloadcpython-52a70c4a126220d550bf0a9f429fc0dc837fb8c9.zip
cpython-52a70c4a126220d550bf0a9f429fc0dc837fb8c9.tar.gz
cpython-52a70c4a126220d550bf0a9f429fc0dc837fb8c9.tar.bz2
fix fixer name
-rw-r--r--Doc/library/2to3.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/2to3.rst b/Doc/library/2to3.rst
index a0a4610..f3be8fa 100644
--- a/Doc/library/2to3.rst
+++ b/Doc/library/2to3.rst
@@ -276,7 +276,7 @@ and off individually. They are described here in more detail.
Converts the :keyword:`print` statement to the :func:`print` function.
-.. 2to3fixer:: raises
+.. 2to3fixer:: raise
Converts ``raise E, V`` to ``raise E(V)``, and ``raise E, V, T`` to ``raise
E(V).with_traceback(T)``. If ``E`` is a tuple, the translation will be