stop putting comments in the middle of call chains

`rustfmt` doesn't handle this very well.
This commit is contained in:
Charles Hall 2024-05-16 01:08:08 -07:00
parent 1911ad34d9
commit 05be778fbb
No known key found for this signature in database
GPG key ID: 7B8E0645816E07CF
10 changed files with 35 additions and 38 deletions

View file

@ -828,9 +828,9 @@ impl service::users::Data for KeyValueDatabase {
let mut last = prefix.clone();
last.extend_from_slice(&until.to_be_bytes());
// Include last
for (key, _) in self
.todeviceid_events
// this includes last
.iter_from(&last, true)
.take_while(move |(k, _)| k.starts_with(&prefix))
.map(|(key, _)| {