Skip to content

Commit 311d902

Browse files
committed
Clarify real-value for all returned attrs in finfo()
1 parent 472d825 commit 311d902

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

spec/API_specification/array_api/data_type_functions.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -63,23 +63,23 @@ def finfo(type: Union[dtype, array], /) -> finfo_object:
6363
6464
- **bits**: *int*
6565
66-
number of bits occupied by the floating-point data type.
66+
number of bits occupied by the real-valued floating-point data type.
6767
6868
- **eps**: *float*
6969
70-
difference between 1.0 and the next smallest representable floating-point number larger than 1.0 according to the IEEE-754 standard.
70+
difference between 1.0 and the next smallest representable real-valued floating-point number larger than 1.0 according to the IEEE-754 standard.
7171
7272
- **max**: *float*
7373
74-
largest representable number.
74+
largest representable real-valued number.
7575
7676
- **min**: *float*
7777
78-
smallest representable number.
78+
smallest representable real-valued number.
7979
8080
- **smallest_normal**: *float*
8181
82-
smallest positive floating-point number with full precision.
82+
smallest positive real-valued floating-point number with full precision.
8383
"""
8484

8585
def iinfo(type: Union[dtype, array], /) -> iinfo_object:

0 commit comments

Comments
 (0)