From f604a6b5d622904ec1ca6527d61425484484cfc2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Moritz=20=27Morty=27=20Str=C3=BCbe?= Date: Wed, 20 May 2020 17:34:11 +0200 Subject: [PATCH] [F.36] Typo (missing s) (#1623) --- CppCoreGuidelines.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CppCoreGuidelines.md b/CppCoreGuidelines.md index 7ae4769..14e4f01 100644 --- a/CppCoreGuidelines.md +++ b/CppCoreGuidelines.md @@ -5028,7 +5028,7 @@ If at all possible, consider failure to close/cleanup a fundamental design error ##### Note -Declare a destructor `noexcept`. That will ensure that it either completes normally or terminate the program. +Declare a destructor `noexcept`. That will ensure that it either completes normally or terminates the program. ##### Note