From 85a2a7776e8cc01ce3efdc92e262a7764f5fc061 Mon Sep 17 00:00:00 2001 From: Emma Simon Date: Tue, 18 Jan 2022 13:59:40 -0500 Subject: DOC: Fix typo in meshgrid example coordinate was misspelled in a comment in the example code [ci skip] --- numpy/lib/function_base.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'numpy/lib/function_base.py') diff --git a/numpy/lib/function_base.py b/numpy/lib/function_base.py index d4abde425..d5b130b72 100644 --- a/numpy/lib/function_base.py +++ b/numpy/lib/function_base.py @@ -4907,7 +4907,7 @@ def meshgrid(*xi, copy=True, sparse=False, indexing='xy'): >>> x = np.linspace(-5, 5, 101) >>> y = np.linspace(-5, 5, 101) - >>> # full coorindate arrays + >>> # full coordinate arrays >>> xx, yy = np.meshgrid(x, y) >>> zz = np.sqrt(xx**2 + yy**2) >>> xx.shape, yy.shape, zz.shape -- cgit v1.2.1