From 002d8b830152c534517cd8c7265bca4cb86a7492 Mon Sep 17 00:00:00 2001 From: Amir Livneh Date: Mon, 4 Mar 2019 08:48:51 -0500 Subject: [PATCH] Fix typos (#1364) --- CppCoreGuidelines.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CppCoreGuidelines.md b/CppCoreGuidelines.md index d258017..ed95ba2 100644 --- a/CppCoreGuidelines.md +++ b/CppCoreGuidelines.md @@ -14828,7 +14828,7 @@ Message passing rules summary: ##### Reason A `future` preserves the usual function call return semantics for asynchronous tasks. -The is no explicit locking and both correct (value) return and error (exception) return are handled simply. +There is no explicit locking and both correct (value) return and error (exception) return are handled simply. ##### Example @@ -14847,7 +14847,7 @@ The is no explicit locking and both correct (value) return and error (exception) ##### Reason A `future` preserves the usual function call return semantics for asynchronous tasks. -The is no explicit locking and both correct (value) return and error (exception) return are handled simply. +There is no explicit locking and both correct (value) return and error (exception) return are handled simply. ##### Example