From b933b0332937b6a76f602e6bd9f9590db087622d Mon Sep 17 00:00:00 2001 From: Amir Livneh Date: Sat, 2 Mar 2019 15:21:27 -0500 Subject: [PATCH] Fix punctuation in ES.77 (#1363) --- CppCoreGuidelines.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CppCoreGuidelines.md b/CppCoreGuidelines.md index a5ecd45..d258017 100644 --- a/CppCoreGuidelines.md +++ b/CppCoreGuidelines.md @@ -12634,7 +12634,7 @@ Often, a loop that requires a `break` is a good candidate for a function (algori ??? -Often. a loop that uses `continue` can equivalently and as clearly be expressed by an `if`-statement. +Often, a loop that uses `continue` can equivalently and as clearly be expressed by an `if`-statement. ???