summaryrefslogtreecommitdiff
path: root/salhelper/source/thread.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'salhelper/source/thread.cxx')
-rw-r--r--salhelper/source/thread.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/salhelper/source/thread.cxx b/salhelper/source/thread.cxx
index 53fa2079c787..52c028c133ba 100644
--- a/salhelper/source/thread.cxx
+++ b/salhelper/source/thread.cxx
@@ -20,7 +20,7 @@ salhelper::Thread::Thread(char const * name): name_(name) {}
void salhelper::Thread::launch() {
SAL_INFO("salhelper.thread", "launch " << name_);
// Assumption is that osl::Thread::create returns normally with a true
- // return value if it causes osl::Thread::run to start executing:
+ // return value iff it causes osl::Thread::run to start executing:
acquire();
try {
if (!create()) {