From d72b4e74ac081ea9c9cbb304a845be219d611db9 Mon Sep 17 00:00:00 2001 From: Mitsuru Kariya Date: Mon, 2 Sep 2013 21:56:30 +0900 Subject: [PATCH] [algorithm.tristate_lexicographical_compare] Fix document's typo. --- source/libs/algorithm/tristate_lexicographical_compare.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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