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 468253858D35 for ; Tue, 16 Apr 2024 15:47:19 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.2 sourceware.org 468253858D35 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 468253858D35 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=1713282441; cv=none; b=HG85lEBh+GMzwYt1sbJ3sQj/PReYfQhNJIIWrvaKuDAj+6QQY0u5xgzrkXwCUalt4EO1D9Vj+a5SYL1wOmzu+b9UdiPOJcd+YeeDy6oKeluamd+tgOvlCL1pg3oAcCZl/qCwNPPQrSpy50i+4YeYIAQfIw3Ifhd6dh9NUGYynJ4= ARC-Message-Signature: i=1; a=rsa-sha256; d=sourceware.org; s=key; t=1713282441; c=relaxed/simple; bh=QDDes4AyhzcxKQiDYuGf4xJNkqsWMltCfCO6ibQx3+k=; h=DKIM-Signature:From:To:Subject:Date:Message-ID:MIME-Version; b=uVciJqAdVzEbGbeg/aD2euk8IPKH7mcvy5wbh4kD1Mb2dPG0nNjAiN4oUdgZkRQJgQ0EIr8Ogt8V/y2z4aN1toVz6O0coWoRxQIOlNx7skX8UhZwFgHBC4p8s0YENr8ZzmyR0ed/WG5B7ktCAmiwM1kKf/ZtIsst3j9SV1oDo60= ARC-Authentication-Results: i=1; server2.sourceware.org DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1713282439; 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=0uqG7UZgu0UXQ7vtTE71nSnfmJGtw3hdnPDVNm/zkSU=; b=ef3b6ZRjJ/8KppQ9gHctShhoXtQq27IT4lL5GzQ2dpXA6VnOyNUPKPoU9/uApLqZ5CukEo zFngr4cf6LSKvk9FsSvG0mDP2OAXqzcfLrOgZ3uMTfv6LgVuSi4lVTjc4CPzrRUyGXm+cL 3gEVXDuIrzex/hr74KajYyhvH2efaXY= Received: from mimecast-mx02.redhat.com (mx-ext.redhat.com [66.187.233.73]) by relay.mimecast.com with ESMTP with STARTTLS (version=TLSv1.3, cipher=TLS_AES_256_GCM_SHA384) id us-mta-426-IGmG33NJMHSFaA784D7e-g-1; Tue, 16 Apr 2024 11:47:17 -0400 X-MC-Unique: IGmG33NJMHSFaA784D7e-g-1 Received: from smtp.corp.redhat.com (int-mx01.intmail.prod.int.rdu2.redhat.com [10.11.54.1]) (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 506793816441; Tue, 16 Apr 2024 15:47:16 +0000 (UTC) Received: from localhost (unknown [10.42.28.61]) by smtp.corp.redhat.com (Postfix) with ESMTP id 0834228D; Tue, 16 Apr 2024 15:47:15 +0000 (UTC) From: Jonathan Wakely To: libstdc++@gcc.gnu.org, gcc-patches@gcc.gnu.org Subject: [committed] libstdc++: Fix "extact" typos in comments Date: Tue, 16 Apr 2024 16:46:39 +0100 Message-ID: <20240416154655.964584-1-jwakely@redhat.com> MIME-Version: 1.0 X-Scanned-By: MIMEDefang 3.4.1 on 10.11.54.1 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_H4,RCVD_IN_MSPIKE_WL,SPF_HELO_NONE,SPF_NONE,TXREP 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 x86_64-linux. Pushed to trunk. -- >8 -- libstdc++-v3/ChangeLog: * config/locale/dragonfly/numeric_members.cc: Fix typos in comments. * config/locale/gnu/numeric_members.cc: Likewise. --- libstdc++-v3/config/locale/dragonfly/numeric_members.cc | 4 ++-- libstdc++-v3/config/locale/gnu/numeric_members.cc | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/libstdc++-v3/config/locale/dragonfly/numeric_members.cc b/libstdc++-v3/config/locale/dragonfly/numeric_members.cc index 4e8364f6f44..dc71ef4ed70 100644 --- a/libstdc++-v3/config/locale/dragonfly/numeric_members.cc +++ b/libstdc++-v3/config/locale/dragonfly/numeric_members.cc @@ -115,7 +115,7 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION } } - // NB: There is no way to extact this info from posix locales. + // NB: There is no way to extract this info from posix locales. // _M_truename = __nl_langinfo_l(YESSTR, __cloc); _M_data->_M_truename = "true"; _M_data->_M_truename_size = 4; @@ -213,7 +213,7 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION } } - // NB: There is no way to extact this info from posix locales. + // NB: There is no way to extract this info from posix locales. // _M_truename = __nl_langinfo_l(YESSTR, __cloc); _M_data->_M_truename = L"true"; _M_data->_M_truename_size = 4; diff --git a/libstdc++-v3/config/locale/gnu/numeric_members.cc b/libstdc++-v3/config/locale/gnu/numeric_members.cc index 3d1a88ae832..f061065922f 100644 --- a/libstdc++-v3/config/locale/gnu/numeric_members.cc +++ b/libstdc++-v3/config/locale/gnu/numeric_members.cc @@ -159,7 +159,7 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION } } - // NB: There is no way to extact this info from posix locales. + // NB: There is no way to extract this info from posix locales. // _M_truename = __nl_langinfo_l(YESSTR, __cloc); _M_data->_M_truename = "true"; _M_data->_M_truename_size = 4; @@ -251,7 +251,7 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION } } - // NB: There is no way to extact this info from posix locales. + // NB: There is no way to extract this info from posix locales. // _M_truename = __nl_langinfo_l(YESSTR, __cloc); _M_data->_M_truename = L"true"; _M_data->_M_truename_size = 4; -- 2.44.0