diff options
Diffstat (limited to 'Doc/library/2to3.rst')
-rw-r--r-- | Doc/library/2to3.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/2to3.rst b/Doc/library/2to3.rst index 6786ce9..2149a2b 100644 --- a/Doc/library/2to3.rst +++ b/Doc/library/2to3.rst @@ -89,7 +89,7 @@ process. Since some print statements can be parsed as function calls or statements, 2to3 cannot always read files containing the print function. When 2to3 detects the presence of the ``from __future__ import print_function`` compiler directive, it -modifies its internal grammar to interpert :func:`print` as a function. This +modifies its internal grammar to interpret :func:`print` as a function. This change can also be enabled manually with the :option:`-p` flag. Use :option:`-p` to run fixers on code that already has had its print statements converted. |