Skip to content

Commit 9d8f7b2

Browse files
authored
Apply suggestions from code review
1 parent bb2bdcb commit 9d8f7b2

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Doc/c-api/float.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@ Floating-Point Objects
157157
158158
.. c:macro:: Py_IS_FINITE(X)
159159
160-
Determines if the given floating-point number has finite value,
160+
Determines if the given floating-point number *X* has finite value,
161161
that is, it is normal, subnormal or zero, but not infinite or NaN.
162162
163163
.. deprecated:: 3.14
@@ -166,7 +166,7 @@ Floating-Point Objects
166166
167167
.. c:macro:: Py_IS_INFINITY(X)
168168
169-
Determines if the given floating-point number is positive or negative
169+
Determines if the given floating-point number *X* is positive or negative
170170
infinity.
171171
172172
.. deprecated:: 3.14
@@ -175,7 +175,7 @@ Floating-Point Objects
175175
176176
.. c:macro:: Py_IS_NAN(X)
177177
178-
Determines if the given floating-point number is a not-a-number (NaN) value.
178+
Determines if the given floating-point number *X* is a not-a-number (NaN) value.
179179
180180
.. deprecated:: 3.14
181181
The macro is :term:`soft deprecated`. Use :c:macro:`!isnan` instead.

0 commit comments

Comments
 (0)