From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 2181) id 8C967385843E; Thu, 27 Apr 2023 12:43:03 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 8C967385843E DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1682599383; bh=dVEReEAgPpoBd/chtAzDuodXbOYeObxJ/ra5Rx4mYRk=; h=From:To:Subject:Date:From; b=JdfXh68SzUGjM04DkvAK7Dz0Qz9ASkT9qWYHCeFP8HVBjB4Tq8zrR5zp9F8XPSXsK 6xiDpcrgJrosRWwoc7eZklGQH3i6G7dP2lShs54aSopKYVPOT2TVto9oM0aKXHbNbY H4z672CiK89wv0/e3IgDRkT0qz45f2jXT20i9RCE= 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 r13-7260] libstdc++: Fix typos in doxygen comments X-Act-Checkin: gcc X-Git-Author: Jonathan Wakely X-Git-Refname: refs/heads/releases/gcc-13 X-Git-Oldrev: a682ab46d8b73feb19729619225183f56f26d7e6 X-Git-Newrev: 6778b885e8973d80d897eccbe669d94a29abf22f Message-Id: <20230427124303.8C967385843E@sourceware.org> Date: Thu, 27 Apr 2023 12:43:03 +0000 (GMT) List-Id: https://gcc.gnu.org/g:6778b885e8973d80d897eccbe669d94a29abf22f commit r13-7260-g6778b885e8973d80d897eccbe669d94a29abf22f Author: Jonathan Wakely Date: Wed Apr 26 23:38:43 2023 +0100 libstdc++: Fix typos in doxygen comments libstdc++-v3/ChangeLog: * include/bits/mofunc_impl.h: Fix typo in doxygen comment. * include/std/format: Likewise. (cherry picked from commit 481281ccf41aa2bc596e548edaad4e57833f3340) Diff: --- libstdc++-v3/include/bits/mofunc_impl.h | 3 +-- libstdc++-v3/include/std/format | 4 ++-- 2 files changed, 3 insertions(+), 4 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 diff --git a/libstdc++-v3/include/std/format b/libstdc++-v3/include/std/format index e4ef4f9b6d9..6edc3208afa 100644 --- a/libstdc++-v3/include/std/format +++ b/libstdc++-v3/include/std/format @@ -185,7 +185,7 @@ namespace __format __failed_to_parse_format_spec() { __throw_format_error("format error: failed to parse format-spec"); } } // namespace __format -/// @endcond + /// @endcond // [format.parse.ctx], class template basic_format_parse_context template class basic_format_parse_context; @@ -3870,7 +3870,7 @@ namespace __format }; #endif } // namespace __format -/// @@endcond +/// @endcond template [[nodiscard]]