Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion spec/API_specification/array_object.md
Original file line number Diff line number Diff line change
Expand Up @@ -566,7 +566,7 @@ Returns `x[key]`.

- array instance.

- **key**: _Union\[ int, slice, Tuple\[ Union\[ int, slice ], ... ], <array> ]_
- **key**: _Union\[ int, slice, ellipsis, Tuple\[ Union\[ int, slice, ellipsis ], ... ], <array> ]_

- index key.

Expand Down
4 changes: 2 additions & 2 deletions spec/API_specification/data_type_functions.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ Machine limits for floating-point data types.

#### Returns

- **out**: _<class>_
- **out**: _<finfo object>_

- an object having the following attributes:

Expand All @@ -47,7 +47,7 @@ Machine limits for integer data types.

#### Returns

- **out**: _<class>_
- **out**: _<iinfo object>_

- a class with that encapsules the following attributes:

Expand Down
4 changes: 2 additions & 2 deletions spec/API_specification/manipulation_functions.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ Joins a sequence of arrays along an existing axis.

#### Parameters

- **arrays**: _Tuple\[ <array> ]_
- **arrays**: _Tuple\[ <array>, ... ]_

- input arrays to join. The arrays must have the same shape, except in the dimension specified by `axis`.

Expand Down Expand Up @@ -154,7 +154,7 @@ Joins a sequence of arrays along a new axis.

#### Parameters

- **arrays**: _Tuple\[ <array> ]_
- **arrays**: _Tuple\[ <array>, ... ]_

- input arrays to join. Each array must have the same shape.

Expand Down