Skip to content

Commit 2b63003

Browse files
committed
add review changes
1 parent d933e48 commit 2b63003

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

spec/API_specification/creation_functions.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -290,7 +290,7 @@ Returns evenly spaced numbers over a specified interval.
290290
- a one-dimensional array containing evenly spaced values.
291291
292292
(function-meshgrid)=
293-
### meshgrid(x, /, *, indexing='xy')
293+
### meshgrid(*arrays, /, *, indexing='xy')
294294
295295
Returns coordinate matrices from coordinate vectors.
296296
@@ -302,19 +302,19 @@ Returns coordinate matrices from coordinate vectors.
302302
303303
### Parameters
304304
305-
- **x**: _<array>_
305+
- ***arrays**: _<array>_
306306
307-
- One dimensional array representing the coordinates of the grid.
307+
- One dimensional arrays representing the coordinates of the grid.
308308
309-
- **indexing**: _Optional\[str]_
309+
- **indexing**: _Optional\[ str ]_
310310
311311
- Cartesian 'xy' by default or 'ij' for matrix indexing of the output.
312312
313313
### Returns
314314
315-
- **out**: _\[<array>\]_
315+
- **out**: _Tuple\[ <array>, ... ]_
316316
317-
- List of N arrays with rank N.
317+
- List of N arrays with rank `max(2, N)`.
318318
319319
(function-ones)=
320320
### ones(shape, /, *, dtype=None, device=None)

0 commit comments

Comments
 (0)