From 642cec45557cfd8c85e463ac60aa764bf61ee1fb Mon Sep 17 00:00:00 2001 From: Michael Park Date: Fri, 11 Dec 2015 16:38:23 -0500 Subject: [PATCH] F.27: Fixed typo `s/treads/threads/` in example. --- CppCoreGuidelines.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CppCoreGuidelines.md b/CppCoreGuidelines.md index c57b211..42785e5 100644 --- a/CppCoreGuidelines.md +++ b/CppCoreGuidelines.md @@ -2625,7 +2625,7 @@ Using `std::shared_ptr` is the standard way to represent shared ownership. That std::thread t2 {shade, args2, bottom_left, im}; std::thread t3 {shade, args3, bottom_right, im}; - // detach treads + // detach threads // last thread to finish deletes the image ##### Note