summaryrefslogtreecommitdiffstats
path: root/Doc/library/os.rst
diff options
context:
space:
mode:
authorJeroen Ruigrok van der Werven <asmodai@in-nomine.org>2010-07-13 14:47:01 (GMT)
committerJeroen Ruigrok van der Werven <asmodai@in-nomine.org>2010-07-13 14:47:01 (GMT)
commit9c558bcfd1a57dece1273889e438e1771bf632d4 (patch)
tree4700585d98f0968e761adac75e1bc35731a49824 /Doc/library/os.rst
parent85f2177f6d73bad4a2f84f41db8284216ce5eda1 (diff)
downloadcpython-9c558bcfd1a57dece1273889e438e1771bf632d4.zip
cpython-9c558bcfd1a57dece1273889e438e1771bf632d4.tar.gz
cpython-9c558bcfd1a57dece1273889e438e1771bf632d4.tar.bz2
Fix documentation typo: wprite() -> write().
Diffstat (limited to 'Doc/library/os.rst')
-rw-r--r--Doc/library/os.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/os.rst b/Doc/library/os.rst
index b4724b6..9167b30 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`.