From: Nuno Lopes Date: Tue, 13 Oct 2020 19:21:55 +0000 (+0100) Subject: libstdc++: Fix doxygen comment for std::any_of X-Git-Tag: releases/gcc-10.3.0~745 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=84b3d60d4f5e354d36af6eacb7d0741ca02813a9;p=thirdparty%2Fgcc.git libstdc++: Fix doxygen comment for std::any_of libstdc++-v3/ChangeLog: * include/bits/stl_algo.h (any_of): Fix incorrect description in comment. (cherry picked from commit 5204cc561a8d3c1a671969715ceb507ece8edef7) --- diff --git a/libstdc++-v3/include/bits/stl_algo.h b/libstdc++-v3/include/bits/stl_algo.h index 932ece555293..778a14be97f0 100644 --- a/libstdc++-v3/include/bits/stl_algo.h +++ b/libstdc++-v3/include/bits/stl_algo.h @@ -471,7 +471,7 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION { return __last == _GLIBCXX_STD_A::find_if(__first, __last, __pred); } /** - * @brief Checks that a predicate is false for at least an element + * @brief Checks that a predicate is true for at least one element * of a sequence. * @ingroup non_mutating_algorithms * @param __first An input iterator.