[Python-checkins] r62365 - python/trunk/Doc/library/mmap.rst

jeroen.ruigrok python-checkins at python.org
Thu Apr 17 14:39:46 CEST 2008


Author: jeroen.ruigrok
Date: Thu Apr 17 14:39:45 2008
New Revision: 62365

Log:
Be consistent in the use of read-only.


Modified:
   python/trunk/Doc/library/mmap.rst

Modified: python/trunk/Doc/library/mmap.rst
==============================================================================
--- python/trunk/Doc/library/mmap.rst	(original)
+++ python/trunk/Doc/library/mmap.rst	Thu Apr 17 14:39:45 2008
@@ -26,7 +26,7 @@
 For both the Unix and Windows versions of the constructor, *access* may be
 specified as an optional keyword parameter. *access* accepts one of three
 values: :const:`ACCESS_READ`, :const:`ACCESS_WRITE`, or :const:`ACCESS_COPY`
-to specify readonly, write-through or copy-on-write memory respectively.
+to specify read-only, write-through or copy-on-write memory respectively.
 *access* can be used on both Unix and Windows.  If *access* is not specified,
 Windows mmap returns a write-through mapping.  The initial memory values for
 all three access types are taken from the specified file.  Assignment to an


More information about the Python-checkins mailing list