diff options
author | Jeroen Ruigrok van der Werven <asmodai@in-nomine.org> | 2008-04-17 12:39:45 (GMT) |
---|---|---|
committer | Jeroen Ruigrok van der Werven <asmodai@in-nomine.org> | 2008-04-17 12:39:45 (GMT) |
commit | ea7fa726305a39aa59660c93fd26c0cc916a8c0e (patch) | |
tree | 5ba1b350883ecbe04e64389b0020f797a7684095 /Doc/library/mmap.rst | |
parent | 5eaffc4ce1279cd023df68a6ee1fd1a5919bff2b (diff) | |
download | cpython-ea7fa726305a39aa59660c93fd26c0cc916a8c0e.zip cpython-ea7fa726305a39aa59660c93fd26c0cc916a8c0e.tar.gz cpython-ea7fa726305a39aa59660c93fd26c0cc916a8c0e.tar.bz2 |
Be consistent in the use of read-only.
Diffstat (limited to 'Doc/library/mmap.rst')
-rw-r--r-- | Doc/library/mmap.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/mmap.rst b/Doc/library/mmap.rst index d2a6d1e..a9a4ad8 100644 --- a/Doc/library/mmap.rst +++ b/Doc/library/mmap.rst @@ -26,7 +26,7 @@ still needs to be closed when done). 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 |