@@ -53,8 +53,8 @@ noted otherwise, all return values are floats.
5353:func: `frexp(x) <frexp> ` Mantissa and exponent of *x *
5454:func: `isclose(a, b, rel_tol, abs_tol) <isclose> ` Check if the values *a * and *b * are close to each other
5555:func: `isfinite(x) <isfinite> ` Check if *x * is neither an infinity nor a NaN
56- :func: `isnormal(x) <isnormal> ` Check if *x * is a normal floating-point number
57- :func: `issubnormal(x) <issubnormal> ` Check if *x * is a subnormal floating-point number
56+ :func: `isnormal(x) <isnormal> ` Check if *x * is a normal number
57+ :func: `issubnormal(x) <issubnormal> ` Check if *x * is a subnormal number
5858:func: `isinf(x) <isinf> ` Check if *x * is a positive or negative infinity
5959:func: `isnan(x) <isnan> ` Check if *x * is a NaN (not a number)
6060:func: `ldexp(x, i) <ldexp> ` ``x * (2**i) ``, inverse of function :func: `frexp `
@@ -377,7 +377,7 @@ Floating point manipulation functions
377377
378378.. function :: isnormal(x)
379379
380- Return ``True `` if *x * is a normal floating-point number, that is a finite
380+ Return ``True `` if *x * is a normal number, that is a finite
381381 nonzero number that is not a subnormal (see :func: `issubnormal `).
382382 Return ``False `` otherwise.
383383
@@ -386,7 +386,7 @@ Floating point manipulation functions
386386
387387.. function :: issubnormal(x)
388388
389- Return ``True `` if *x * is a subnormal floating-point number, that is a finite
389+ Return ``True `` if *x * is a subnormal 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
0 commit comments