Docs: fix typos of 'whether' in operator_{gt,le,lt}.md (#4412)
This commit is contained in:
parent
8c391e04fe
commit
960b763ecd
@ -17,7 +17,7 @@ bool operator>(ScalarType lhs, const const_reference rhs) noexcept; // (2)
|
|||||||
operand is `NaN` and the other operand is either `NaN` or any other number.
|
operand is `NaN` and the other operand is either `NaN` or any other number.
|
||||||
- Otherwise, returns the result of `#!cpp !(lhs <= rhs)` (see [**operator<=**](operator_le.md)).
|
- Otherwise, returns the result of `#!cpp !(lhs <= rhs)` (see [**operator<=**](operator_le.md)).
|
||||||
|
|
||||||
2. Compares wether a JSON value is greater than a scalar or a scalar is greater than a JSON value by
|
2. Compares whether a JSON value is greater than a scalar or a scalar is greater than a JSON value by
|
||||||
converting the scalar to a JSON value and comparing both JSON values according to 1.
|
converting the scalar to a JSON value and comparing both JSON values according to 1.
|
||||||
|
|
||||||
## Template parameters
|
## Template parameters
|
||||||
|
|||||||
@ -17,7 +17,7 @@ bool operator<=(ScalarType lhs, const const_reference rhs) noexcept; // (2)
|
|||||||
operand is `NaN` and the other operand is either `NaN` or any other number.
|
operand is `NaN` and the other operand is either `NaN` or any other number.
|
||||||
- Otherwise, returns the result of `#!cpp !(rhs < lhs)` (see [**operator<**](operator_lt.md)).
|
- Otherwise, returns the result of `#!cpp !(rhs < lhs)` (see [**operator<**](operator_lt.md)).
|
||||||
|
|
||||||
1. Compares wether a JSON value is less than or equal to a scalar or a scalar is less than or equal
|
1. Compares whether a JSON value is less than or equal to a scalar or a scalar is less than or equal
|
||||||
to a JSON value by converting the scalar to a JSON value and comparing both JSON values according
|
to a JSON value by converting the scalar to a JSON value and comparing both JSON values according
|
||||||
to 1.
|
to 1.
|
||||||
|
|
||||||
|
|||||||
@ -27,7 +27,7 @@ bool operator<(ScalarType lhs, const const_reference rhs) noexcept; // (2)
|
|||||||
7. binary
|
7. binary
|
||||||
For instance, any boolean value is considered less than any string.
|
For instance, any boolean value is considered less than any string.
|
||||||
|
|
||||||
2. Compares wether a JSON value is less than a scalar or a scalar is less than a JSON value by converting
|
2. Compares whether a JSON value is less than a scalar or a scalar is less than a JSON value by converting
|
||||||
the scalar to a JSON value and comparing both JSON values according to 1.
|
the scalar to a JSON value and comparing both JSON values according to 1.
|
||||||
|
|
||||||
## Template parameters
|
## Template parameters
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user