From cea9b10e5b8992c2cb8d6ae562bd8c4d2ed3ee69 Mon Sep 17 00:00:00 2001 From: Chris Mumford Date: Thu, 11 Dec 2014 07:52:09 -0800 Subject: [PATCH] Fixed incorrect comment wording for Iterator::Seek. --- include/leveldb/iterator.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/leveldb/iterator.h b/include/leveldb/iterator.h index 76aced0..da631ed 100644 --- a/include/leveldb/iterator.h +++ b/include/leveldb/iterator.h @@ -37,7 +37,7 @@ class Iterator { // Valid() after this call iff the source is not empty. virtual void SeekToLast() = 0; - // Position at the first key in the source that at or past target + // Position at the first key in the source that is at or past target. // The iterator is Valid() after this call iff the source contains // an entry that comes at or past target. virtual void Seek(const Slice& target) = 0;