]> granicus.if.org Git - python/commitdiff
Fix typo
authorÉric Araujo <merwok@netwok.org>
Wed, 18 Aug 2010 22:35:23 +0000 (22:35 +0000)
committerÉric Araujo <merwok@netwok.org>
Wed, 18 Aug 2010 22:35:23 +0000 (22:35 +0000)
Doc/using/cmdline.rst
Doc/whatsnew/3.2.rst

index c1130e4cd25bf8a5b57e1221e9beb06b02e85afa..45c10408b0a2964a3976a2ed4437284df8ad26f2 100644 (file)
@@ -444,7 +444,7 @@ These environment variables influence Python's behavior.
 
 .. envvar:: PYTHONFSENCODING
 
-   If this is set before running the intepreter, it overrides the encoding used
+   If this is set before running the interpreter, it overrides the encoding used
    for the filesystem encoding (see :func:`sys.getfilesystemencoding`).
 
    .. versionadded:: 3.2
@@ -452,7 +452,7 @@ These environment variables influence Python's behavior.
 
 .. envvar:: PYTHONIOENCODING
 
-   If this is set before running the intepreter, it overrides the encoding used
+   If this is set before running the interpreter, it overrides the encoding used
    for stdin/stdout/stderr, in the syntax ``encodingname:errorhandler``. The
    ``:errorhandler`` part is optional and has the same meaning as in
    :func:`str.encode`.
index 81cfa83c745921015f0270d8901bc2b254640195..7364e27ec74b74f3afc68053cad381e1be1b2029 100644 (file)
@@ -241,7 +241,7 @@ Unicode
 =======
 
 The filesystem encoding can be specified by setting the
-:envvar:`PYTHONFSENCODING` environment variable before running the intepreter.
+:envvar:`PYTHONFSENCODING` environment variable before running the interpreter.
 The value should be a string in the form ``<encoding>``, e.g. ``utf-8``.