Skip to content

Commit dcdfbde

Browse files
authored
Address some small type annotation issues (#144)
xref gh-143
1 parent c6d5918 commit dcdfbde

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

spec/API_specification/array_object.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -566,7 +566,7 @@ Returns `x[key]`.
566566

567567
- array instance.
568568

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

571571
- index key.
572572

spec/API_specification/data_type_functions.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ Machine limits for floating-point data types.
2121

2222
#### Returns
2323

24-
- **out**: _<class>_
24+
- **out**: _<finfo object>_
2525

2626
- an object having the following attributes:
2727

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

4848
#### Returns
4949

50-
- **out**: _<class>_
50+
- **out**: _<iinfo object>_
5151

5252
- a class with that encapsules the following attributes:
5353

spec/API_specification/manipulation_functions.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ Joins a sequence of arrays along an existing axis.
1919

2020
#### Parameters
2121

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

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

@@ -154,7 +154,7 @@ Joins a sequence of arrays along a new axis.
154154
155155
#### Parameters
156156
157-
- **arrays**: _Tuple\[ <array> ]_
157+
- **arrays**: _Tuple\[ <array>, ... ]_
158158
159159
- input arrays to join. Each array must have the same shape.
160160

0 commit comments

Comments
 (0)