summaryrefslogtreecommitdiff
path: root/db
diff options
context:
space:
mode:
authorusurai <9886192+usurai@users.noreply.github.com>2019-03-21 22:58:29 +0800
committerChris Mumford <cmumford@cmumford.com>2019-03-21 07:58:29 -0700
commit6571279d6de21fe33caa31b2ea4170d34b15b10e (patch)
treed03adeb79aecadf782f7a934cdeeaf8325da62e6 /db
parent15e227896621d01ebad4c5d4b3cc82a7a9b5b30b (diff)
downloadleveldb-6571279d6de21fe33caa31b2ea4170d34b15b10e.tar.gz
fix a typo in the comment of skiplist_test.cc (#664)
Diffstat (limited to 'db')
-rw-r--r--db/skiplist_test.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/db/skiplist_test.cc b/db/skiplist_test.cc
index c4cf146..38c1941 100644
--- a/db/skiplist_test.cc
+++ b/db/skiplist_test.cc
@@ -131,7 +131,7 @@ TEST(SkipTest, InsertAndLookup) {
// concurrent readers (with no synchronization other than when a
// reader's iterator is created), the reader always observes all the
// 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
// constructed, but we should never miss any values that were present
// at iterator construction time.