From a1257d1b98edae829726674b2161454c19e9cece Mon Sep 17 00:00:00 2001 From: Brad Hefta-Gaub Date: Thu, 16 Jan 2014 13:39:55 -0800 Subject: [PATCH] fixed comment that erroneously said wait when it should have said quit --- libraries/shared/src/GenericThread.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libraries/shared/src/GenericThread.cpp b/libraries/shared/src/GenericThread.cpp index cd97710d4e..a2dcf1004d 100644 --- a/libraries/shared/src/GenericThread.cpp +++ b/libraries/shared/src/GenericThread.cpp @@ -64,7 +64,7 @@ void GenericThread::threadRoutine() { } } - // If we were on a thread, then wait till it's done + // If we were on a thread, then quit our thread if (_isThreaded && _thread) { _thread->quit(); }