From: Jeroen Ruigrok van der Werven Date: Tue, 13 Jul 2010 14:47:01 +0000 (+0000) Subject: Fix documentation typo: wprite() -> write(). X-Git-Tag: v3.2a1~204 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=9c558bcfd1a57dece1273889e438e1771bf632d4;p=thirdparty%2FPython%2Fcpython.git Fix documentation typo: wprite() -> write(). --- diff --git a/Doc/library/os.rst b/Doc/library/os.rst index b4724b666c78..9167b309b98c 100644 --- a/Doc/library/os.rst +++ b/Doc/library/os.rst @@ -723,7 +723,7 @@ as internal buffering of data. This function is intended for low-level I/O. For normal usage, use the built-in function :func:`open`, which returns a "file object" with - :meth:`~file.read` and :meth:`~file.wprite` methods (and many more). To + :meth:`~file.read` and :meth:`~file.write` methods (and many more). To wrap a file descriptor in a "file object", use :func:`fdopen`.