diff options
author | ericroman@google.com <ericroman@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-08-18 16:00:38 +0000 |
---|---|---|
committer | ericroman@google.com <ericroman@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-08-18 16:00:38 +0000 |
commit | d324ab33283100c0800809b394cbde3dd1dcd801 (patch) | |
tree | da83b2b01f7346790f1cf426cf7f252fa6d30089 /base/condition_variable.h | |
parent | 7cb98a23d0be29c2b5ceafa6f9e4b1d8e98cd282 (diff) | |
download | chromium_src-d324ab33283100c0800809b394cbde3dd1dcd801.zip chromium_src-d324ab33283100c0800809b394cbde3dd1dcd801.tar.gz chromium_src-d324ab33283100c0800809b394cbde3dd1dcd801.tar.bz2 |
Cleanup some comment typos.
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@984 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'base/condition_variable.h')
-rw-r--r-- | base/condition_variable.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/base/condition_variable.h b/base/condition_variable.h index f30ffba..cbfe519 100644 --- a/base/condition_variable.h +++ b/base/condition_variable.h @@ -72,7 +72,7 @@ // threads that were waiting when the request was made will indeed // get signaled. Some implementations mess up, and don't signal them // all, while others allow the wait to be effectively turned off (for -// for a while while waiting threads come around). This implementation +// a while while waiting threads come around). This implementation // appears correct, as it will not "lose" any signals, and will guarantee // that all threads get signaled by Broadcast(). // |