Skip to content

Commit ee77f63

Browse files
committed
fix sphinx
1 parent e6cfdf9 commit ee77f63

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/array_api_stubs/_draft/creation_functions.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -463,7 +463,7 @@ def meshgrid(*arrays: array, indexing: Literal["xy", "ij"] = "xy") -> List[array
463463
----------
464464
arrays: array
465465
an arbitrary number of one-dimensional arrays representing grid coordinates. Each array should have the same numeric data type.
466-
indexing: 'xy' | 'ij'
466+
indexing: Literal["xy" | "ij"]
467467
Cartesian ``'xy'`` or matrix ``'ij'`` indexing of output. If provided zero or one one-dimensional vector(s) (i.e., the zero- and one-dimensional cases, respectively), the ``indexing`` keyword has no effect and should be ignored. Default: ``'xy'``.
468468
469469
Returns

0 commit comments

Comments
 (0)