From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 2181) id E6ED53858D35; Tue, 16 Apr 2024 15:46:38 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org E6ED53858D35 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1713282398; bh=0k/7Ey3iWJuQmDXw/12ppCA8Gd1MYdEqDAU8jQDLcxc=; h=From:To:Subject:Date:From; b=xm4rccv3V7+chBb8EGDPMMdT6LSinioDCzqb45jDH2FnjfkzrDG4YyErMYjJByq0t nyWsqf3nl1zyAsauTe3bsAi83ScRbiGsaJKBFD5iIwrCmrO0pJdSFuiyBCJ7salGzm sdsy1qnt9naPk4otBDIjeyxOXrWEWRChTQdEP+cA= 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 r14-9995] libstdc++: Fix "extact" typos in comments X-Act-Checkin: gcc X-Git-Author: Jonathan Wakely X-Git-Refname: refs/heads/master X-Git-Oldrev: 8eddd87da2dd01c841f9742f973f65ebe0a88e71 X-Git-Newrev: 443748259d903b6f4d4557392fc788df93d63377 Message-Id: <20240416154638.E6ED53858D35@sourceware.org> Date: Tue, 16 Apr 2024 15:46:38 +0000 (GMT) List-Id: https://gcc.gnu.org/g:443748259d903b6f4d4557392fc788df93d63377 commit r14-9995-g443748259d903b6f4d4557392fc788df93d63377 Author: Jonathan Wakely Date: Tue Apr 16 10:56:46 2024 +0100 libstdc++: Fix "extact" typos in comments libstdc++-v3/ChangeLog: * config/locale/dragonfly/numeric_members.cc: Fix typos in comments. * config/locale/gnu/numeric_members.cc: Likewise. Diff: --- 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;