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.133.124]) by sourceware.org (Postfix) with ESMTPS id 9C6D43858421 for ; Thu, 11 Jan 2024 21:28:22 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.2 sourceware.org 9C6D43858421 Authentication-Results: sourceware.org; dmarc=pass (p=none dis=none) header.from=redhat.com Authentication-Results: sourceware.org; spf=pass smtp.mailfrom=redhat.com ARC-Filter: OpenARC Filter v1.0.0 sourceware.org 9C6D43858421 Authentication-Results: server2.sourceware.org; arc=none smtp.remote-ip=170.10.133.124 ARC-Seal: i=1; a=rsa-sha256; d=sourceware.org; s=key; t=1705008505; cv=none; b=UXdsCd5g1PXbNLvC1eIREcoVlKTWxhKFIac5ASMiJ9jfeJ5NWSqeLCY5zyD+yQbUnVMd100+b0ut2nmweujqTPmr6RiJwzx43bdXU+6bNogb+22OUZEa7aanL+DgcDhg65q6PctEJo24ubrjasThP9RZW5LWqaQuKxmLjvWX9DQ= ARC-Message-Signature: i=1; a=rsa-sha256; d=sourceware.org; s=key; t=1705008505; c=relaxed/simple; bh=YRFsn5DmQLxyW4KkV4zmeQ42DtozSQXP4H3JAAoxoAo=; h=DKIM-Signature:From:To:Subject:Date:Message-ID:MIME-Version; b=Cu/ocfyj+fBaW+vFzZEpBKRgSTO65LUbPmCtn0w7wO9E4PCKNe0uMBA60I5If1AI86ayAdooazbANLsqDapauCJbccs5Fjqq5tpPMYt5jE5Yb+VYy7g6gI+ethtswQKeSAs47jHLB//9hNAWys+ZLDRXG9Y0DrlGbNYidOBKGV8= ARC-Authentication-Results: i=1; server2.sourceware.org DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1705008502; 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: in-reply-to:in-reply-to:references:references; bh=vjvzElKbKSRFerGMyImegTZIQIcQBwDy1PkHBKswv8Q=; b=gGRNzF1h58CTaV/HNrmXwT1FoSYbL8yLFVZgxH4hShkYefuWwWezZ+EYNDMLfNqfMku/S0 4PNCV94i5sXla72kiWCpBQRUV/hKQ7Na3FlL9O3gZ8LMbkzle60bmISkseN9Hc+PpqtQeZ M1mmGPuu5oEK612DVz9tjVN/J5hRTcM= Received: from mimecast-mx02.redhat.com (mimecast-mx02.redhat.com [66.187.233.88]) by relay.mimecast.com with ESMTP with STARTTLS (version=TLSv1.3, cipher=TLS_AES_256_GCM_SHA384) id us-mta-670--LLdYTTWNx2kBfaR848dDw-1; Thu, 11 Jan 2024 16:28:20 -0500 X-MC-Unique: -LLdYTTWNx2kBfaR848dDw-1 Received: from smtp.corp.redhat.com (int-mx09.intmail.prod.int.rdu2.redhat.com [10.11.54.9]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by mimecast-mx02.redhat.com (Postfix) with ESMTPS id 86EE084AEA1; Thu, 11 Jan 2024 21:28:20 +0000 (UTC) Received: from localhost (unknown [10.42.28.185]) by smtp.corp.redhat.com (Postfix) with ESMTP id 51DEF492BC6; Thu, 11 Jan 2024 21:28:20 +0000 (UTC) From: Jonathan Wakely To: libstdc++@gcc.gnu.org, gcc-patches@gcc.gnu.org Subject: [committed] libstdc++: Fix spelling mistake in new doc addition Date: Thu, 11 Jan 2024 21:26:52 +0000 Message-ID: <20240111212819.533282-1-jwakely@redhat.com> In-Reply-To: <20240111201900.491691-1-jwakely@redhat.com> References: <20240111201900.491691-1-jwakely@redhat.com> MIME-Version: 1.0 X-Scanned-By: MIMEDefang 3.4.1 on 10.11.54.9 X-Mimecast-Spam-Score: 0 X-Mimecast-Originator: redhat.com Content-Type: text/plain Content-Transfer-Encoding: 8bit X-Spam-Status: No, score=-13.0 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_H3,RCVD_IN_MSPIKE_WL,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: Aaaaand a follow-up to fix the obvious typo in the first word. Pushed to trunk and gcc-13. -- >8 -- libstdc++-v3/ChangeLog: * doc/xml/manual/evolution.xml: Fix spelling. * doc/html/manual/api.html: Regenerate. --- libstdc++-v3/doc/html/manual/api.html | 6 ++++-- libstdc++-v3/doc/xml/manual/evolution.xml | 6 ++++-- 2 files changed, 8 insertions(+), 4 deletions(-) diff --git a/libstdc++-v3/doc/xml/manual/evolution.xml b/libstdc++-v3/doc/xml/manual/evolution.xml index 63666b7b24c..a375ae14b83 100644 --- a/libstdc++-v3/doc/xml/manual/evolution.xml +++ b/libstdc++-v3/doc/xml/manual/evolution.xml @@ -1107,8 +1107,10 @@ to provide the symbols for the experimental C++ Contracts support.
<constant>13.3</constant> -Symols for the Filesystem TS and C++23 <stacktrace> -header were added to the static library libstdc++exp.a. + +Symbols for the Filesystem TS and C++23 <stacktrace> +header were added to the static library libstdc++exp.a. +
-- 2.43.0