Skip to content

Commit

Permalink
refactor: rename lifetime
Browse files Browse the repository at this point in the history
  • Loading branch information
ethe committed Jul 17, 2024
1 parent 3074a89 commit 9b41e54
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/version/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -114,10 +114,10 @@ where
self.level_slice[level].len()
}

pub(crate) async fn iters<'a>(
pub(crate) async fn iters<'iters>(
&self,
iters: &mut Vec<ScanStream<'a, R>>,
range: (Bound<&'a R::Key>, Bound<&'a R::Key>),
iters: &mut Vec<ScanStream<'iters, R>>,
range: (Bound<&'iters R::Key>, Bound<&'iters R::Key>),
ts: Timestamp,
) -> Result<(), VersionError<R>> {
for scope in self.level_slice[0].iter() {
Expand Down

0 comments on commit 9b41e54

Please sign in to comment.