diff options
author | Ralf Gommers <ralf.gommers@googlemail.com> | 2012-02-05 15:57:00 +0100 |
---|---|---|
committer | Ralf Gommers <ralf.gommers@googlemail.com> | 2012-02-05 15:57:00 +0100 |
commit | d48b756b232c99b6624d76db3188090052e0db60 (patch) | |
tree | 6f21009ca272ac76a5a0f651f17c91eec14075a4 /numpy/lib/function_base.py | |
parent | 3fb541ef51ca60cf5a903ed83f69120fe3f5373a (diff) | |
download | numpy-d48b756b232c99b6624d76db3188090052e0db60.tar.gz |
STY: meshgrid: some minor changes to address review comments.
Diffstat (limited to 'numpy/lib/function_base.py')
-rw-r--r-- | numpy/lib/function_base.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/lib/function_base.py b/numpy/lib/function_base.py index 39d1d1c87..4f2f7b433 100644 --- a/numpy/lib/function_base.py +++ b/numpy/lib/function_base.py @@ -3223,7 +3223,7 @@ def meshgrid(*xi, **kwargs): If False, a view into the original arrays are returned in order to conserve memory. Default is True. Please note that ``sparse=False, copy=False`` will likely return non-contiguous arrays. - Furthermore, more than one element of a broadcasted array may refer to + Furthermore, more than one element of a broadcast array may refer to a single memory location. If you need to write to the arrays, make copies first. |