diff options
author | Michi Henning <michi@zeroc.com> | 2005-10-25 22:51:48 +0000 |
---|---|---|
committer | Michi Henning <michi@zeroc.com> | 2005-10-25 22:51:48 +0000 |
commit | bfbe2a457c64d522cbbe487e06f9b8ed3aa8b3ea (patch) | |
tree | a67ff3327cd58a68033dddf7c404cba1459cf5a0 /cpp/src/IceUtil/CountDownLatch.cpp | |
parent | adding code group configuration to installshield project (diff) | |
download | ice-bfbe2a457c64d522cbbe487e06f9b8ed3aa8b3ea.tar.bz2 ice-bfbe2a457c64d522cbbe487e06f9b8ed3aa8b3ea.tar.xz ice-bfbe2a457c64d522cbbe487e06f9b8ed3aa8b3ea.zip |
Fixed typo in comment.
Diffstat (limited to 'cpp/src/IceUtil/CountDownLatch.cpp')
-rw-r--r-- | cpp/src/IceUtil/CountDownLatch.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/IceUtil/CountDownLatch.cpp b/cpp/src/IceUtil/CountDownLatch.cpp index dedcd7d3585..05d27beb1b7 100644 --- a/cpp/src/IceUtil/CountDownLatch.cpp +++ b/cpp/src/IceUtil/CountDownLatch.cpp @@ -92,7 +92,7 @@ IceUtil::CountDownLatch::countDown() #if defined(__APPLE__) // // On MacOS X we do the broadcast with the mutex held. This seems to be necessary to prevent the - // broadcast call to hang (spining in an infinite loop). + // broadcast call to hang (spinning in an infinite loop). // if(broadcast) { |