Skip to content

Commit

Permalink
Fix spell check regression
Browse files Browse the repository at this point in the history
  • Loading branch information
hsutter committed Jan 22, 2024
1 parent fcda019 commit e784212
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions CppCoreGuidelines.md
Original file line number Diff line number Diff line change
Expand Up @@ -3613,8 +3613,8 @@ 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};

// detaching threads requires extra care (e.g., to join
// before main ends), but even if we do detach t0..3 here ...
// detaching threads requires extra care (e.g., to join before
// main ends), but even if we do detach the four threads here ...
}
// ... shared_ptr ensures that eventually the last thread to
// finish safely deletes the image
Expand Down

0 comments on commit e784212

Please sign in to comment.