diff --git a/source/algorithms.tex b/source/algorithms.tex index ff4c3b38ed..fd683c08e8 100644 --- a/source/algorithms.tex +++ b/source/algorithms.tex @@ -8731,7 +8731,7 @@ \pnum \returns -The smaller value. +The lesser value. Returns the first argument when the arguments are equivalent. \pnum @@ -8773,9 +8773,9 @@ \pnum \returns -The smallest value in the input range. +The least value in the input range. Returns a copy of the leftmost element -when several elements are equivalent to the smallest. +when several elements are equivalent to the least. \pnum \complexity @@ -8809,7 +8809,7 @@ \pnum \returns -The larger value. +The greater value. Returns the first argument when the arguments are equivalent. \pnum @@ -8851,9 +8851,9 @@ \pnum \returns -The largest value in the input range. +The greatest value in the input range. Returns a copy of the leftmost element -when several elements are equivalent to the largest. +when several elements are equivalent to the greatest. \pnum \complexity @@ -8889,7 +8889,7 @@ \pnum \returns -\tcode{\{b, a\}} if \tcode{b} is smaller than \tcode{a}, and +\tcode{\{b, a\}} if \tcode{b} is lesser than \tcode{a}, and \tcode{\{a, b\}} otherwise. \pnum @@ -8934,8 +8934,8 @@ \returns Let \tcode{X} be the return type. Returns \tcode{X\{x, y\}}, -where \tcode{x} is a copy of the leftmost element with the smallest value and -\tcode{y} a copy of the rightmost element with the largest value +where \tcode{x} is a copy of the leftmost element with the least value and +\tcode{y} a copy of the rightmost element with the greatest value in the input range. \pnum @@ -9080,12 +9080,12 @@ \tcode{\{first, first\}} if \range{first}{last} is empty, otherwise \tcode{\{m, M\}}, where \tcode{m} is the first iterator in \range{first}{last} such that no iterator in the range refers -to a smaller element, and where \tcode{M} is the last iterator +to a lesser element, and where \tcode{M} is the last iterator \begin{footnote} This behavior intentionally differs from \tcode{max_element}. \end{footnote} -in \range{first}{last} such that no iterator in the range refers to a larger element. +in \range{first}{last} such that no iterator in the range refers to a greater element. \pnum \complexity