summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorChris Mumford <cmumford@chromium.org>2014-12-11 07:52:09 -0800
committerChris Mumford <cmumford@chromium.org>2014-12-11 07:52:09 -0800
commitcea9b10e5b8992c2cb8d6ae562bd8c4d2ed3ee69 (patch)
tree929ccbea6965ff312a38b7c8356214b36eef6f01 /include
parentc00c569f27bddf0b91b79c786eb69a0e9d1ab97b (diff)
downloadleveldb-cea9b10e5b8992c2cb8d6ae562bd8c4d2ed3ee69.tar.gz
Fixed incorrect comment wording for Iterator::Seek.
Diffstat (limited to 'include')
-rw-r--r--include/leveldb/iterator.h2
1 files changed, 1 insertions, 1 deletions
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;