Skip to content

Commit 4eb3669

Browse files
Apply suggestions from code review
Co-authored-by: Stan Ulbrych <[email protected]>
1 parent 7350b25 commit 4eb3669

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

Doc/library/math.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -378,15 +378,15 @@ Floating point manipulation functions
378378

379379
.. function:: isnormal(x)
380380

381-
Return ``True`` if *x* is a normal floating-point number, i.e. a finite
381+
Return ``True`` if *x* is a normal floating-point number, that is a finite
382382
nonzero number, that is not a subnormal. Return ``False`` otherwise.
383383

384384
.. versionadded:: next
385385

386386

387387
.. function:: issubnormal(x)
388388

389-
Return ``True`` if *x* is a subnormal floating-point number, i.e. a finite
389+
Return ``True`` if *x* is a subnormal floating-point number, that is a finite
390390
nonzero number with a magnitude smaller than the smallest positive normal
391391
number, see :data:`sys.float_info.min`. Return ``False`` otherwise.
392392

Doc/whatsnew/3.14.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -952,7 +952,7 @@ math
952952
* Added more detailed error messages for domain errors in the module.
953953
(Contributed by Charlie Zhao and Sergey B Kirpichev in :gh:`101410`.)
954954

955-
* Add :func:`math.isnormal` and :func:`math.issubnormal` function.
955+
* Add :func:`math.isnormal` and :func:`math.issubnormal` functions.
956956
(Contributed by Sergey B Kirpichev in :gh:`132908`.)
957957

958958

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
Add :func:`math.isnormal` and :func:`math.issubnormal` function. Patch by
1+
Add :func:`math.isnormal` and :func:`math.issubnormal` functions. Patch by
22
Sergey B Kirpichev.

0 commit comments

Comments
 (0)