diff options
Diffstat (limited to 'numpy/doc/subclassing.py')
-rw-r--r-- | numpy/doc/subclassing.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/doc/subclassing.py b/numpy/doc/subclassing.py index 5a54ddd90..7dc10e1c8 100644 --- a/numpy/doc/subclassing.py +++ b/numpy/doc/subclassing.py @@ -72,7 +72,7 @@ class, that points to the data in the original. There are other points in the use of ndarrays where we need such views, such as copying arrays (``c_arr.copy()``), creating ufunc output arrays (see also :ref:`array-wrap`), and reducing methods (like -``c_arr.mean()``. +``c_arr.mean()``). Relationship of view casting and new-from-template -------------------------------------------------- |