From 69f749bf7f952eedd4390dcb89059fe0764a2149 Mon Sep 17 00:00:00 2001 From: Jonathan Bohren Date: Tue, 25 Jul 2017 03:15:49 -0400 Subject: [PATCH] Fixing typo / improving language in NR.3 (#1005) Current text has a plurality typo ("separates" vs "separate"), modified version more precisely conveys the idea. --- CppCoreGuidelines.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CppCoreGuidelines.md b/CppCoreGuidelines.md index dd03548..37a731d 100644 --- a/CppCoreGuidelines.md +++ b/CppCoreGuidelines.md @@ -19322,7 +19322,7 @@ Many, possibly most, problems with exceptions stem from historical needs to inte The fundamental arguments for the use of exceptions are -* They clearly separates error return from ordinary return +* They clearly differentiate between erroneous return and ordinary return * They cannot be forgotten or ignored * They can be used systematically