diff options
Diffstat (limited to 'numpy/__init__.py')
-rw-r--r-- | numpy/__init__.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/__init__.py b/numpy/__init__.py index 1592dc8cb..897c14060 100644 --- a/numpy/__init__.py +++ b/numpy/__init__.py @@ -93,7 +93,7 @@ the source code). Copies vs. in-place operation ----------------------------- Most of the functions in `numpy` return a copy of the array argument -(e.g., `sort`). In-place versions of these functions are often +(e.g., `np.sort`). In-place versions of these functions are often available as array methods, i.e. ``x = np.array([1,2,3]); x.sort()``. Exceptions to this rule are documented. |