Skip to content

Commit c9abd21

Browse files
committed
Fix comparison operator appearing outside code
This confuses the Word converter, but is undesirable and inconsistent anyway, so this change just puts it into the inline code. Fixes #544
1 parent cbcb461 commit c9abd21

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

standard/expressions.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4096,7 +4096,7 @@ The operators compare the operands according to the rules of the IEC 60559 stand
40964096

40974097
If either operand is NaN, the result is `false` for all operators except `!=`, for which the result is `true`. For any two operands, `x != y` always produces the same result as `!(x == y)`. However, when one or both operands are NaN, the `<`, `>`, `<=`, and `>=` operators do *not* produce the same results as the logical negation of the opposite operator.
40984098

4099-
> *Example*: If either of `x` and `y` is NaN, then `x` < `y` is `false`, but `!(x >= y)` is `true`. *end example*
4099+
> *Example*: If either of `x` and `y` is NaN, then `x < y` is `false`, but `!(x >= y)` is `true`. *end example*
41004100
41014101
When neither operand is NaN, the operators compare the values of the two floating-point operands with respect to the ordering
41024102

0 commit comments

Comments
 (0)