summaryrefslogtreecommitdiff
path: root/numpy/lib/stride_tricks.py
diff options
context:
space:
mode:
Diffstat (limited to 'numpy/lib/stride_tricks.py')
-rw-r--r--numpy/lib/stride_tricks.py10
1 files changed, 5 insertions, 5 deletions
diff --git a/numpy/lib/stride_tricks.py b/numpy/lib/stride_tricks.py
index ebd6d5a22..7358be222 100644
--- a/numpy/lib/stride_tricks.py
+++ b/numpy/lib/stride_tricks.py
@@ -33,16 +33,16 @@ def broadcast_arrays(*args):
Parameters
----------
- `*args` : arrays
+ `*args` : array_likes
The arrays to broadcast.
Returns
-------
broadcasted : list of arrays
- These arrays are views on the original arrays. They are typically not
- contiguous. Furthermore, more than one element of a broadcasted array
- may refer to a single memory location. If you need to write to the
- arrays, make copies first.
+ These arrays are views on the original arrays. They are typically
+ not contiguous. Furthermore, more than one element of a
+ broadcasted array may refer to a single memory location. If you
+ need to write to the arrays, make copies first.
Examples
--------