From 4ee65f451be26702df266ee8035240efc50fd902 Mon Sep 17 00:00:00 2001 From: wqfish Date: Tue, 21 Apr 2020 00:36:59 -0700 Subject: [PATCH] Fix doc for DBRawIterator::prev and next methods (#405) --- src/db_iterator.rs | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/db_iterator.rs b/src/db_iterator.rs index 576da45..fde5f93 100644 --- a/src/db_iterator.rs +++ b/src/db_iterator.rs @@ -275,8 +275,6 @@ impl<'a> DBRawIterator<'a> { } /// Seeks to the next key. - /// - /// Returns true if the iterator is valid after this operation. pub fn next(&mut self) { unsafe { ffi::rocksdb_iter_next(self.inner); @@ -284,8 +282,6 @@ impl<'a> DBRawIterator<'a> { } /// Seeks to the previous key. - /// - /// Returns true if the iterator is valid after this operation. pub fn prev(&mut self) { unsafe { ffi::rocksdb_iter_prev(self.inner);