From: Jonathan Wakely Date: Mon, 13 Mar 2023 10:30:12 +0000 (+0000) Subject: libstdc++: Fix typo in comment X-Git-Tag: basepoints/gcc-14~582 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a1d4d92d6a306e4142949e16e0cac075519256c7;p=thirdparty%2Fgcc.git libstdc++: Fix typo in comment Reported by Jonny Grant. libstdc++-v3/ChangeLog: * include/bits/allocator.h: Fix typo in comment. --- diff --git a/libstdc++-v3/include/bits/allocator.h b/libstdc++-v3/include/bits/allocator.h index be67789c1cd3..abbd753d33d6 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.