fix-typo: add missing periods

Summary: Closes https://github.com/facebook/rocksdb/pull/3720

Differential Revision: D7631525

Pulled By: ajkr

fbshipit-source-id: 50cf4dc363b0d32b150d963011171a8a6f53a384
This commit is contained in:
Jingguo Yao 2018-04-15 13:09:26 -07:00 committed by Facebook Github Bot
parent 28087acd79
commit 81d44f2bc5
1 changed files with 2 additions and 2 deletions

View File

@ -43,12 +43,12 @@ class Iterator : public Cleanable {
// 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 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;
// Position at the last key in the source that at or before target
// Position at the last key in the source that at or before target.
// The iterator is Valid() after this call iff the source contains
// an entry that comes at or before target.
virtual void SeekForPrev(const Slice& target) = 0;