From 7f6758181f5336722bebd13bbeca733d2833d63f Mon Sep 17 00:00:00 2001 From: Davis King Date: Fri, 2 Jul 2010 00:32:43 +0000 Subject: [PATCH] Made a comment more clear --HG-- extra : convert_revision : svn%3Afdd8eb12-d10e-0410-9acb-85c331704f74/trunk%403715 --- examples/thread_function_ex.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/examples/thread_function_ex.cpp b/examples/thread_function_ex.cpp index 35ecc57f7..84947d62d 100644 --- a/examples/thread_function_ex.cpp +++ b/examples/thread_function_ex.cpp @@ -62,8 +62,9 @@ int main() - // we will wait for t3 to end here because the destructor for - // thread_function objects always waits for their thread to end + // At this point we will automatically wait for t3 to end because + // the destructor for thread_function objects always wait for their + // thread to terminate. }