F.27: Fixed typo s/treads/threads/ in example.

This commit is contained in:
Michael Park 2015-12-11 16:38:23 -05:00
parent b873f02285
commit 642cec4555

View File

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