Browse Source

[2369] Update comment, whitespace

Mukund Sivaraman 12 years ago
parent
commit
cb9e761c57
1 changed files with 1 additions and 2 deletions
  1. 1 2
      src/lib/dns/tests/inputsource_unittest.cc

+ 1 - 2
src/lib/dns/tests/inputsource_unittest.cc

@@ -100,7 +100,7 @@ TEST_F(InputSourceTest, getAndUngetChar) {
 }
 
 // ungetAll() should skip back to the place where the InputSource
-// started at construction.
+// started at construction, or the last saved start of line.
 TEST_F(InputSourceTest, ungetAll) {
     while (!source_.atEOF()) {
         source_.getChar();
@@ -117,7 +117,6 @@ TEST_F(InputSourceTest, ungetAll) {
     EXPECT_FALSE(source_.atEOF());
 }
 
-
 // Test line counters.
 TEST_F(InputSourceTest, lines) {
     size_t line = 1;