Skip to content

Commit 7bc94af

Browse files
authored
Merge pull request MicrosoftDocs#2659 from corob-msft/cr-1888-fetestexcept
Bulk fix FE_ALL_EXCEPT typo per 1888
2 parents 997d3d0 + ede73da commit 7bc94af

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

docs/c-runtime-library/reference/fegetexceptflag2.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ The **fegetexceptflag** function stores the current state of the floating-point
4545
|FE_INVALID|A domain error occurred in an earlier floating-point operation.|
4646
|FE_OVERFLOW|A range error occurred; an earlier floating-point operation result was too large to be represented.|
4747
|FE_UNDERFLOW|An earlier floating-point operation result was too small to be represented at full precision; a denormal value was created.|
48-
|FE_ALLEXCEPT|The bitwise OR of all supported floating-point exceptions.|
48+
|FE_ALL_EXCEPT|The bitwise OR of all supported floating-point exceptions.|
4949

5050
The *excepts* argument may be zero, one of the supported floating-point exception macros, or the bitwise OR of two or more of the macros. The effect of any other argument value is undefined.
5151

docs/c-runtime-library/reference/feraiseexcept.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ The **feraiseexcept** function attempts to raise the floating-point exceptions s
4040
|FE_INVALID|A domain error occurred in an earlier floating-point operation.|
4141
|FE_OVERFLOW|A range error occurred; an earlier floating-point operation result was too large to be represented.|
4242
|FE_UNDERFLOW|An earlier floating-point operation result was too small to be represented at full precision; a denormal value was created.|
43-
|FE_ALLEXCEPT|The bitwise OR of all supported floating-point exceptions.|
43+
|FE_ALL_EXCEPT|The bitwise OR of all supported floating-point exceptions.|
4444

4545
The *excepts* argument may be zero, one of the exception macro values, or the bitwise OR of two or more of the supported exception macros. If one of the specified exception macros is FE_OVERFLOW or FE_UNDERFLOW, the FE_INEXACT exception may be raised as a side-effect.
4646

docs/c-runtime-library/reference/fesetexceptflag2.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ The **fesetexceptflag** function sets the state of the floating-point exception
4545
|FE_INVALID|A domain error occurred in an earlier floating-point operation.|
4646
|FE_OVERFLOW|A range error occurred; an earlier floating-point operation result was too large to be represented.|
4747
|FE_UNDERFLOW|An earlier floating-point operation result was too small to be represented at full precision; a denormal value was created.|
48-
|FE_ALLEXCEPT|The bitwise OR of all supported floating-point exceptions.|
48+
|FE_ALL_EXCEPT|The bitwise OR of all supported floating-point exceptions.|
4949

5050
The *excepts* argument may be zero, one of the supported floating-point exception macros, or the bitwise OR of two or more of the macros. The effect of any other argument value is undefined.
5151

docs/c-runtime-library/reference/fetestexcept1.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ Use the fetestexcept function to determine which exceptions were raised by a flo
4141
|FE_INVALID|A domain error occurred in an earlier floating-point operation.|
4242
|FE_OVERFLOW|A range error occurred; an earlier floating-point operation result was too large to be represented.|
4343
|FE_UNDERFLOW|An earlier floating-point operation result was too small to be represented at full precision; a denormal value was created.|
44-
|FE_ALLEXCEPT|The bitwise OR of all supported floating-point exceptions.|
44+
|FE_ALL_EXCEPT|The bitwise OR of all supported floating-point exceptions.|
4545

4646
The specified *excepts* argument may be 0, one of the supported floating-point exception macros, or the bitwise OR of two or more of the macros. The effect of any other *excepts* argument value is undefined.
4747

0 commit comments

Comments
 (0)