From 8a1780e8411bf3827b2233ab5c518d5886de5c08 Mon Sep 17 00:00:00 2001 From: Amir Livneh Date: Mon, 4 Mar 2019 08:49:26 -0500 Subject: [PATCH] Fix punctuation in CP.1 (#1366) --- CppCoreGuidelines.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CppCoreGuidelines.md b/CppCoreGuidelines.md index 618978f..73a652a 100644 --- a/CppCoreGuidelines.md +++ b/CppCoreGuidelines.md @@ -13843,7 +13843,7 @@ There are several ways that this example could be made safe for a multi-threaded Code that is never run in a multi-threaded environment. Be careful: there are many examples where code that was "known" to never run in a multi-threaded program -was run as part of a multi-threaded program. Often years later. +was run as part of a multi-threaded program, often years later. Typically, such programs lead to a painful effort to remove data races. Therefore, code that is never intended to run in a multi-threaded environment should be clearly labeled as such and ideally come with compile or run-time enforcement mechanisms to catch those usage bugs early.