Skip to content

Commit

Permalink
Fixed incorrect comment wording for Iterator::Seek.
Browse files Browse the repository at this point in the history
  • Loading branch information
cmumford committed Dec 11, 2014
1 parent c00c569 commit cea9b10
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/leveldb/iterator.h
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit cea9b10

Please sign in to comment.