Skip to content

Commit e784212

Browse files
committed
Fix spell check regression
1 parent fcda019 commit e784212

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

CppCoreGuidelines.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3613,8 +3613,8 @@ Using `std::shared_ptr` is the standard way to represent shared ownership. That
36133613
std::thread t2 {shade, args2, bottom_left, im};
36143614
std::thread t3 {shade, args3, bottom_right, im};
36153615

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

0 commit comments

Comments
 (0)