Skip to content

Commit

Permalink
cargo clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
ParkMyCar committed Feb 5, 2025
1 parent 3329a0c commit 4a67cb5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/storage-client/src/client.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1028,7 +1028,7 @@ where
/// Add a `(K, V, D)` to the staged batch.
pub async fn add(&mut self, k: &K, v: &V, d: &D) {
self.builder
.add(&k, &v, &self.initial_ts, d)
.add(k, v, &self.initial_ts, d)
.await
.expect("invalid Persist usage");
}
Expand Down

0 comments on commit 4a67cb5

Please sign in to comment.