[Python-checkins] r82849 - python/branches/py3k/Doc/library/os.rst

jeroen.ruigrok python-checkins at python.org
Tue Jul 13 16:47:02 CEST 2010


Author: jeroen.ruigrok
Date: Tue Jul 13 16:47:01 2010
New Revision: 82849

Log:
Fix documentation typo: wprite() -> write().


Modified:
   python/branches/py3k/Doc/library/os.rst

Modified: python/branches/py3k/Doc/library/os.rst
==============================================================================
--- python/branches/py3k/Doc/library/os.rst	(original)
+++ python/branches/py3k/Doc/library/os.rst	Tue Jul 13 16:47:01 2010
@@ -723,7 +723,7 @@
 
       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`.
 
 


More information about the Python-checkins mailing list