summaryrefslogtreecommitdiff
path: root/numpy/lib/function_base.py
diff options
context:
space:
mode:
authorCharles Harris <charlesr.harris@gmail.com>2022-04-07 00:11:22 -0600
committerGitHub <noreply@github.com>2022-04-07 00:11:22 -0600
commit782fdec661e8ba24f31a1b8886ec9a0a4301efd2 (patch)
treea13b0335f50faa2d28edc89ca67cfc63db1d573a /numpy/lib/function_base.py
parentf404e9e92e87a3990712d723d5c562a89300ac01 (diff)
downloadnumpy-782fdec661e8ba24f31a1b8886ec9a0a4301efd2.tar.gz
STY: Whitespace fixes.
Diffstat (limited to 'numpy/lib/function_base.py')
-rw-r--r--numpy/lib/function_base.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/numpy/lib/function_base.py b/numpy/lib/function_base.py
index 20e3edc82..dd1bd18aa 100644
--- a/numpy/lib/function_base.py
+++ b/numpy/lib/function_base.py
@@ -4846,9 +4846,9 @@ def meshgrid(*xi, copy=True, sparse=False, indexing='xy'):
Returns
-------
X1, X2,..., XN : ndarray
- For vectors `x1`, `x2`,..., `xn` with lengths ``Ni=len(xi)`` ,
- returns ``(N1, N2, N3,...Nn)`` shaped arrays if indexing='ij'
- or ``(N2, N1, N3,...Nn)`` shaped arrays if indexing='xy'
+ For vectors `x1`, `x2`,..., `xn` with lengths ``Ni=len(xi)``,
+ returns ``(N1, N2, N3,..., Nn)`` shaped arrays if indexing='ij'
+ or ``(N2, N1, N3,..., Nn)`` shaped arrays if indexing='xy'
with the elements of `xi` repeated to fill the matrix along
the first dimension for `x1`, the second for `x2` and so on.