summaryrefslogtreecommitdiff
path: root/numpy/core/memmap.py
diff options
context:
space:
mode:
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