From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 2181) id BD4313858C3A; Fri, 21 Jan 2022 16:08:10 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org BD4313858C3A 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 r12-6799] libstdc++: Fix typo in comment X-Act-Checkin: gcc X-Git-Author: Jonathan Wakely X-Git-Refname: refs/heads/master X-Git-Oldrev: b8806796ec64585de39ca6ee3b7b30cc08f27d62 X-Git-Newrev: 45cae5b6392496028f35c5948f7fae0af81d135b Message-Id: <20220121160810.BD4313858C3A@sourceware.org> Date: Fri, 21 Jan 2022 16:08:10 +0000 (GMT) X-BeenThere: libstdc++-cvs@gcc.gnu.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Libstdc++-cvs mailing list List-Unsubscribe: , List-Archive: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 21 Jan 2022 16:08:10 -0000 https://gcc.gnu.org/g:45cae5b6392496028f35c5948f7fae0af81d135b commit r12-6799-g45cae5b6392496028f35c5948f7fae0af81d135b Author: Jonathan Wakely Date: Fri Jan 21 15:00:49 2022 +0000 libstdc++: Fix typo in comment libstdc++-v3/ChangeLog: * testsuite/20_util/shared_ptr/cons/array.cc: Fix comment. Diff: --- libstdc++-v3/testsuite/20_util/shared_ptr/cons/array.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libstdc++-v3/testsuite/20_util/shared_ptr/cons/array.cc b/libstdc++-v3/testsuite/20_util/shared_ptr/cons/array.cc index 7dc0c619333..d69d90bd71d 100644 --- a/libstdc++-v3/testsuite/20_util/shared_ptr/cons/array.cc +++ b/libstdc++-v3/testsuite/20_util/shared_ptr/cons/array.cc @@ -143,7 +143,7 @@ test08() VERIFY( count == 0 ); } -// Converting constrcutor +// Converting constructor void test09()