fix a typo in the comment of skiplist_test.cc (#664)

This commit is contained in:
usurai 2019-03-21 22:58:29 +08:00 committed by Chris Mumford
parent 15e2278966
commit 6571279d6d

View File

@ -131,7 +131,7 @@ TEST(SkipTest, InsertAndLookup) {
// concurrent readers (with no synchronization other than when a // concurrent readers (with no synchronization other than when a
// reader's iterator is created), the reader always observes all the // reader's iterator is created), the reader always observes all the
// data that was present in the skip list when the iterator was // data that was present in the skip list when the iterator was
// constructor. Because insertions are happening concurrently, we may // constructed. Because insertions are happening concurrently, we may
// also observe new values that were inserted since the iterator was // also observe new values that were inserted since the iterator was
// constructed, but we should never miss any values that were present // constructed, but we should never miss any values that were present
// at iterator construction time. // at iterator construction time.