summaryrefslogtreecommitdiff
path: root/numpy/core/memmap.py
diff options
context:
space:
mode:
authorchris.burns <chris.burns@localhost>2008-02-22 22:42:06 +0000
committerchris.burns <chris.burns@localhost>2008-02-22 22:42:06 +0000
commit6cd2d6d0776b40f9753c5017bd49f01846d5a325 (patch)
treea43f840b32b6dda8b87255ed5b721f91eb60ea82 /numpy/core/memmap.py
parent3a9c9221c44f226cb4b29922454e4608d82f9c3d (diff)
downloadnumpy-6cd2d6d0776b40f9753c5017bd49f01846d5a325.tar.gz
Small sync-to-flush doc update.
Diffstat (limited to 'numpy/core/memmap.py')
-rw-r--r--numpy/core/memmap.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/numpy/core/memmap.py b/numpy/core/memmap.py
index a4baf5573..a7ae3dab8 100644
--- a/numpy/core/memmap.py
+++ b/numpy/core/memmap.py
@@ -54,8 +54,8 @@ class memmap(ndarray):
Methods
-------
close : close the memmap file
- sync : flush any changes in memory to file on disk
- When you delete a memmap object, sync is called first to write
+ flush : flush any changes in memory to file on disk
+ When you delete a memmap object, flush is called first to write
changes to disk before removing the object.
Returns