From 46a26976babc0584c20f2e228085e8755127dd36 Mon Sep 17 00:00:00 2001 From: Thibault Kruse Date: Thu, 11 Aug 2016 18:17:25 +0200 Subject: [PATCH] typo in method invocation --- CppCoreGuidelines.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CppCoreGuidelines.md b/CppCoreGuidelines.md index c50f851..34e965d 100644 --- a/CppCoreGuidelines.md +++ b/CppCoreGuidelines.md @@ -11353,7 +11353,7 @@ The plain `thread`s should be assumed to use the full generality of `std::thread void use(int n) { - thread t { thricky, this, n }; + thread t { tricky, this, n }; // ... // ... should I join here? ... }