Minor comment cleanup

This commit is contained in:
eidheim 2017-07-26 08:05:02 +02:00
commit dcaad5e9da
3 changed files with 3 additions and 3 deletions

View file

@ -285,7 +285,7 @@ namespace SimpleWeb {
return std::unique_ptr<SharedLock>(new SharedLock(count));
}
//// Blocks until all shared locks are released, then prevents future shared locks
/// Blocks until all shared locks are released, then prevents future shared locks
void stop() noexcept {
long expected = 0;
while(!count.compare_exchange_weak(expected, -1)) {