Fix spell check regression

pull/2175/head
Herb Sutter 2 years ago
parent fcda019d0b
commit e784212ef0

@ -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

Loading…
Cancel
Save