From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from us-smtp-delivery-124.mimecast.com (us-smtp-delivery-124.mimecast.com [170.10.129.124]) by sourceware.org (Postfix) with ESMTPS id C05C23853551 for ; Thu, 27 Apr 2023 10:33:24 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.2 sourceware.org C05C23853551 Authentication-Results: sourceware.org; dmarc=pass (p=none dis=none) header.from=redhat.com Authentication-Results: sourceware.org; spf=pass smtp.mailfrom=redhat.com DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1682591604; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding; bh=xJAy5Lz95yZ1Wh4TNkYbHKvK35n4pIf8xl8tPWVu7bc=; b=YZIVQXmtZFO0GWLTwY9/GEXW7d96oEvDWm0aPcABWLC6mdLPdDn6bPeiPU8t8PglJyCB5O loy7qPoVj634lqFRPba3J0xmotMes/ndPgxkAAQ4lxK1syg65UL+YY6hKWrbEydlxx9jCf 4N/sOT+0fEWa5V7heo+/3C/WKXpBC6w= Received: from mimecast-mx02.redhat.com (mimecast-mx02.redhat.com [66.187.233.88]) by relay.mimecast.com with ESMTP with STARTTLS (version=TLSv1.2, cipher=TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384) id us-mta-563-O5HrlEcBMZm0eKtXImKGsg-1; Thu, 27 Apr 2023 06:33:22 -0400 X-MC-Unique: O5HrlEcBMZm0eKtXImKGsg-1 Received: from smtp.corp.redhat.com (int-mx04.intmail.prod.int.rdu2.redhat.com [10.11.54.4]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx02.redhat.com (Postfix) with ESMTPS id 8CDFC858F09; Thu, 27 Apr 2023 10:33:22 +0000 (UTC) Received: from localhost (unknown [10.42.28.201]) by smtp.corp.redhat.com (Postfix) with ESMTP id D0CBC2027043; Thu, 27 Apr 2023 10:33:21 +0000 (UTC) From: Jonathan Wakely To: libstdc++@gcc.gnu.org, gcc-patches@gcc.gnu.org Subject: [committed] libstdc++: Fix typos in doxygen comments Date: Thu, 27 Apr 2023 11:33:14 +0100 Message-Id: <20230427103314.1725986-1-jwakely@redhat.com> MIME-Version: 1.0 X-Scanned-By: MIMEDefang 3.1 on 10.11.54.4 X-Mimecast-Spam-Score: 0 X-Mimecast-Originator: redhat.com Content-Type: text/plain Content-Transfer-Encoding: 8bit X-Spam-Status: No, score=-11.9 required=5.0 tests=BAYES_00,DKIMWL_WL_HIGH,DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF,GIT_PATCH_0,RCVD_IN_DNSWL_NONE,RCVD_IN_MSPIKE_H2,SPF_HELO_NONE,SPF_NONE,TXREP,T_SCC_BODY_TEXT_LINE autolearn=ham autolearn_force=no version=3.4.6 X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on server2.sourceware.org List-Id: Tested powerpc64le-linux. Docs tested on Fedora 37 with Doxygen 1.9.7 from current git master. Pushed to trunk. I'll backport this too. -- >8 -- libstdc++-v3/ChangeLog: * include/bits/mofunc_impl.h: Fix typo in doxygen comment. * include/std/format: Likewise. --- 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]] -- 2.40.0