diff --git a/multithreading/thread-local-storage.md b/multithreading/thread-local-storage.md index 629c39d..997f39f 100644 --- a/multithreading/thread-local-storage.md +++ b/multithreading/thread-local-storage.md @@ -67,7 +67,7 @@ void worker(bool firstTime) void main() { // Cria 5 threads nesta chamada - // havendo um worker(true,i) cada. + // havendo um worker(true) cada. for (size_t i = 0; i < 5; ++i) { spawn(&worker, true); }