From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 2181) id EEEA4385828D; Thu, 27 Apr 2023 14:43:43 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org EEEA4385828D DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1682606623; bh=Ky3LO9dUra0w12QWqYk8TMP7Jnl83Q3GtLwpQcs8gpg=; h=From:To:Subject:Date:From; b=y2xTLTZeXw3bpHu0s5QluMYe83sqvnx35BR0eBDGoGDVN/Jw6Z1xwR5qjSS6bQniK I45PzDMJeB9sN5+38dbBTS+9fJSdl8lOAD1KHtMmSNX0IAszk7xSX+4D/rbvql2j6a dnYL/GDfHayTh9MU8K8iPYDtflhxexaFvuhqi34s= MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset="utf-8" From: Jonathan Wakely To: gcc-cvs@gcc.gnu.org, libstdc++-cvs@gcc.gnu.org Subject: [gcc r12-9484] libstdc++: Fix typo in doxygen comment X-Act-Checkin: gcc X-Git-Author: Jonathan Wakely X-Git-Refname: refs/heads/releases/gcc-12 X-Git-Oldrev: 8c008cc431d5d7b6a01e12773dd0d1571f4927bd X-Git-Newrev: 8aa615e0230cc73bd06281dddb187d371a6d2824 Message-Id: <20230427144343.EEEA4385828D@sourceware.org> Date: Thu, 27 Apr 2023 14:43:43 +0000 (GMT) List-Id: https://gcc.gnu.org/g:8aa615e0230cc73bd06281dddb187d371a6d2824 commit r12-9484-g8aa615e0230cc73bd06281dddb187d371a6d2824 Author: Jonathan Wakely Date: Wed Apr 26 23:38:43 2023 +0100 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: --- libstdc++-v3/include/bits/mofunc_impl.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/libstdc++-v3/include/bits/mofunc_impl.h b/libstdc++-v3/include/bits/mofunc_impl.h index 47e1e506306..318a55e618f 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