Browse Source

[2202] minor style fix: folded a long line.

JINMEI Tatuya 12 years ago
parent
commit
ff7d15330f
1 changed files with 2 additions and 2 deletions
  1. 2 2
      src/lib/util/threads/tests/lock_unittest.cc

+ 2 - 2
src/lib/util/threads/tests/lock_unittest.cc

@@ -52,8 +52,8 @@ TEST(MutexTest, destroyLocked) {
 }
 #endif
 
-// In this test, we try to check if a mutex really locks. We could try that with
-// a deadlock, but that's not practical (the test would not end).
+// In this test, we try to check if a mutex really locks. We could try that
+// with a deadlock, but that's not practical (the test would not end).
 //
 // Instead, we try do to some operation on the same data from multiple threads
 // that's likely to break if not locked. Also, the test must run for a while