From f4434478ce292ffd7e4a0fff1bcbce5ab0feeb2f Mon Sep 17 00:00:00 2001 From: Jonathan Wakely Date: Mon, 22 Jul 2019 23:27:57 +0100 Subject: [PATCH] [is.sorted] Add missing "return" and semi-colon This was lost when changing "Returns:" to "Effects:" for P0896R4. The paper included this change, but it was lost when applying it. --- source/algorithms.tex | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/algorithms.tex b/source/algorithms.tex index f68441ae72..cc1f9b8ed6 100644 --- a/source/algorithms.tex +++ b/source/algorithms.tex @@ -6175,7 +6175,7 @@ \effects Equivalent to: \begin{codeblock} -is_sorted_until(std::forward(exec), first, last, comp) == last +return is_sorted_until(std::forward(exec), first, last, comp) == last; \end{codeblock} \end{itemdescr}