diff --git a/CppCoreGuidelines.md b/CppCoreGuidelines.md index 958156c..dd77c91 100644 --- a/CppCoreGuidelines.md +++ b/CppCoreGuidelines.md @@ -2653,7 +2653,7 @@ Using `std::shared_ptr` is the standard way to represent shared ownership. That ##### Example - shared_ptr im { read_image(somewhere) }; + shared_ptr im { read_image(somewhere) }; std::thread t0 {shade, args0, top_left, im}; std::thread t1 {shade, args1, top_right, im};