From 81d44f2bc56a7e7ad5e101ce6b7cc64e2b01311c Mon Sep 17 00:00:00 2001 From: Jingguo Yao Date: Sun, 15 Apr 2018 13:09:26 -0700 Subject: [PATCH] fix-typo: add missing periods Summary: Closes https://github.com/facebook/rocksdb/pull/3720 Differential Revision: D7631525 Pulled By: ajkr fbshipit-source-id: 50cf4dc363b0d32b150d963011171a8a6f53a384 --- include/rocksdb/iterator.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/rocksdb/iterator.h b/include/rocksdb/iterator.h index 14f0ae0ab2..4be77e9621 100644 --- a/include/rocksdb/iterator.h +++ b/include/rocksdb/iterator.h @@ -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;