From: Jonathan Wakely Date: Wed, 26 Apr 2023 22:38:43 +0000 (+0100) Subject: libstdc++: Fix typo in doxygen comment X-Git-Tag: releases/gcc-12.3.0~32 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=8aa615e0230cc73bd06281dddb187d371a6d2824;p=thirdparty%2Fgcc.git libstdc++: Fix typo in doxygen comment libstdc++-v3/ChangeLog: * include/bits/mofunc_impl.h: Fix typo in doxygen comment. (cherry picked from commit 481281ccf41aa2bc596e548edaad4e57833f3340) --- diff --git a/libstdc++-v3/include/bits/mofunc_impl.h b/libstdc++-v3/include/bits/mofunc_impl.h index 47e1e5063069..318a55e618ff 100644 --- a/libstdc++-v3/include/bits/mofunc_impl.h +++ b/libstdc++-v3/include/bits/mofunc_impl.h @@ -51,14 +51,13 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION * @headerfile functional * * The `std::move_only_function` class template is a call wrapper similar - * to * `std::function`, but does not require the stored target function + * to `std::function`, but does not require the stored target function * to be copyable. * * It also supports const-qualification, ref-qualification, and * no-throw guarantees. The qualifications and exception-specification * of the `move_only_function::operator()` member function are respected * when invoking the target function. - * */ template class move_only_function<_Res(_ArgTypes...) _GLIBCXX_MOF_CV