diff options
author | Stefan van der Walt <stefan@sun.ac.za> | 2006-10-07 02:44:41 +0000 |
---|---|---|
committer | Stefan van der Walt <stefan@sun.ac.za> | 2006-10-07 02:44:41 +0000 |
commit | ba6b099b3d4b97fe933e0ebf5f18ca29f8111855 (patch) | |
tree | 2267e154b2864098e4c8369d21bb1ea462b6e0c9 /numpy/lib/shape_base.py | |
parent | c75bd2d03ccc6415bb9a0f090d7e2d80b40ea2af (diff) | |
download | numpy-ba6b099b3d4b97fe933e0ebf5f18ca29f8111855.tar.gz |
Fix typo in tile.
Diffstat (limited to 'numpy/lib/shape_base.py')
-rw-r--r-- | numpy/lib/shape_base.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/lib/shape_base.py b/numpy/lib/shape_base.py index 8f2a3014c..3d9b02bc3 100644 --- a/numpy/lib/shape_base.py +++ b/numpy/lib/shape_base.py @@ -564,7 +564,7 @@ def kron(a,b): return result def tile(A, reps): - """Repeat an array the number of times given in the integer tuple, tup. + """Repeat an array the number of times given in the integer tuple, reps. If reps has length d, the result will have dimension of max(d, A.ndim). If reps is scalar it is treated as a 1-tuple. |