From 4e58fb87f751a6fba0a4d7e402f54f1ef05b56f0 Mon Sep 17 00:00:00 2001 From: Sergey Zubkov Date: Tue, 8 May 2018 08:46:51 -0400 Subject: [PATCH] typo: "nothing to do with sync" -> "nothing to do with stdasync" --- CppCoreGuidelines.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CppCoreGuidelines.md b/CppCoreGuidelines.md index 2f2f9eb..d972ec4 100644 --- a/CppCoreGuidelines.md +++ b/CppCoreGuidelines.md @@ -14145,7 +14145,7 @@ If the string is short (say 10 characters), the call of `modify1` can be surpris essentially all the cost is in the `thread` switch. If the string is long (say 1,000,000 characters), copying it twice is probably not a good idea. -Note that this argument has nothing to do with `sync` as such. It applies equally to considerations about whether to use +Note that this argument has nothing to do with `async` as such. It applies equally to considerations about whether to use message passing or shared memory. ##### Enforcement