Merge pull request #32 from kariya-mitsuru/tristate_lexicographical_compare-doc

[algorithm.tristate_lexicographical_compare] Fix document's typo.
This commit is contained in:
Bolero MURAKAMI 2013-09-03 04:50:29 -07:00
commit 06e387deb6

View file

@ -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