From f8159d26e01caedc18a889e8218be020d8bee1c8 Mon Sep 17 00:00:00 2001 From: luav Date: Sun, 15 Oct 2017 10:31:33 +0200 Subject: [PATCH] Formatting and grammer fixed --- CppCoreGuidelines.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CppCoreGuidelines.md b/CppCoreGuidelines.md index ecf7f48..57e6b37 100644 --- a/CppCoreGuidelines.md +++ b/CppCoreGuidelines.md @@ -13402,7 +13402,7 @@ Application concepts are easier to reason about. void manual_publishing(std::string* msg) { - // Incapsulates thread functionality into the application task + // Encapsulates thread functionality into the application task std::thread publisher(publish, &msg); publisher.join(); }