From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 2181) id 19E1E3858D32; Mon, 13 Mar 2023 10:34:58 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 19E1E3858D32 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1678703698; bh=R43HHvg7DrDfbMzkxQB96np1tlcgTx/E71SVMohVlNM=; h=From:To:Subject:Date:From; b=I6CFrAkGFCTXFCikLDZGylyRW9DVbIbIvF8HaVoKRd3KpsDdnS2p7Z+dCfwlUxE/d ZJdadKt9cHxjARJxIkqF79wllFUPXck4TcWCNo+TkZ2AM4Hr3oNkK+fFugiE0kaSHQ g9/7EnNeCgwnfw0guYNPylwfOzb+cMutlvcollLE= 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-6625] libstdc++: Fix typo in comment X-Act-Checkin: gcc X-Git-Author: Jonathan Wakely X-Git-Refname: refs/heads/master X-Git-Oldrev: eb337d28c32b1b460cc85b3c00f8418ca535c77b X-Git-Newrev: a1d4d92d6a306e4142949e16e0cac075519256c7 Message-Id: <20230313103458.19E1E3858D32@sourceware.org> Date: Mon, 13 Mar 2023 10:34:58 +0000 (GMT) List-Id: https://gcc.gnu.org/g:a1d4d92d6a306e4142949e16e0cac075519256c7 commit r13-6625-ga1d4d92d6a306e4142949e16e0cac075519256c7 Author: Jonathan Wakely Date: Mon Mar 13 10:30:12 2023 +0000 libstdc++: Fix typo in comment Reported by Jonny Grant. libstdc++-v3/ChangeLog: * include/bits/allocator.h: Fix typo in comment. Diff: --- libstdc++-v3/include/bits/allocator.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libstdc++-v3/include/bits/allocator.h b/libstdc++-v3/include/bits/allocator.h index be67789c1cd..abbd753d33d 100644 --- a/libstdc++-v3/include/bits/allocator.h +++ b/libstdc++-v3/include/bits/allocator.h @@ -62,7 +62,7 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION // Since C++20 the primary template should be used for allocator, // but then it would have a non-trivial default ctor and dtor for C++20, - // but trivial for C++98-17, which would be an ABI incompatibiliy between + // but trivial for C++98-17, which would be an ABI incompatibility between // different standard dialects. So C++20 still uses the allocator // explicit specialization, with the historical ABI properties, but with // the same members that are present in the primary template.