From 6571279d6de21fe33caa31b2ea4170d34b15b10e Mon Sep 17 00:00:00 2001
From: usurai <9886192+usurai@users.noreply.github.com>
Date: Thu, 21 Mar 2019 22:58:29 +0800
Subject: [PATCH] fix a typo in the comment of skiplist_test.cc (#664)

---
 db/skiplist_test.cc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

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.