From c32a12b47a2467a93a8cd4960acb61068d033ddf Mon Sep 17 00:00:00 2001 From: Alexey Dmitriev Date: Tue, 22 Sep 2015 16:37:46 +0300 Subject: [PATCH] fix typo --- CppCoreGuidelines.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CppCoreGuidelines.md b/CppCoreGuidelines.md index 7609048..f442605 100644 --- a/CppCoreGuidelines.md +++ b/CppCoreGuidelines.md @@ -1868,7 +1868,7 @@ so don't just springle `noexcept` all over the place. **Enforcement**: -* Flag functions that are not `noexcept`, yet cannot thow +* Flag functions that are not `noexcept`, yet cannot throw * Flag throwing `swap`, `move`, destructors, and default constructors.