diff options
-rw-r--r-- | doc/source/reference/routines.io.rst | 2 | ||||
-rw-r--r-- | numpy/lib/format.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/doc/source/reference/routines.io.rst b/doc/source/reference/routines.io.rst index cf66eab49..2e119af9a 100644 --- a/doc/source/reference/routines.io.rst +++ b/doc/source/reference/routines.io.rst @@ -56,6 +56,7 @@ Memory mapping files :toctree: generated/ memmap + lib.format.open_memmap Text formatting options ----------------------- @@ -85,7 +86,6 @@ Data sources Binary Format Description ------------------------- .. autosummary:: - :template: autosummary/minimal_module.rst :toctree: generated/ lib.format diff --git a/numpy/lib/format.py b/numpy/lib/format.py index cb2d511af..98c3cb63f 100644 --- a/numpy/lib/format.py +++ b/numpy/lib/format.py @@ -820,7 +820,7 @@ def open_memmap(filename, mode='r+', dtype=None, shape=None, See Also -------- - memmap + numpy.memmap """ if isfileobj(filename): |