diff --git a/source/libs/algorithm/tristate_lexicographical_compare.rst b/source/libs/algorithm/tristate_lexicographical_compare.rst index 218fd22b..f86c0e51 100644 --- a/source/libs/algorithm/tristate_lexicographical_compare.rst +++ b/source/libs/algorithm/tristate_lexicographical_compare.rst @@ -25,8 +25,8 @@ Interface Returns ======================================== -| A value less than zero if the sequence of elements defined by the range [first1,last1) is lexicographically less than the sequence of elements defined by the range [first2,last2) and false otherwise. -| A value greater than zero if the sequence of elements defined by the range [first1,last1) is lexicographically greater than the sequence of elements defined by the range [first2,last2) and false otherwise. +| A value less than zero if the sequence of elements defined by the range [first1,last1) is lexicographically less than the sequence of elements defined by the range [first2,last2). +| Otherwise, a value greater than zero if the sequence of elements defined by the range [first1,last1) is lexicographically greater than the sequence of elements defined by the range [first2,last2). | Otherwise, returns a zero value. Remarks