From 9809e1b53cca94d804f6c0711191cf4e92f38596 Mon Sep 17 00:00:00 2001 From: Ivan Enderlin Date: Mon, 19 May 2025 15:44:11 +0200 Subject: [PATCH] doc(sdk): Fix a typo in an inline comment. --- crates/matrix-sdk/src/sliding_sync/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/matrix-sdk/src/sliding_sync/mod.rs b/crates/matrix-sdk/src/sliding_sync/mod.rs index 659da0b0a..e60978324 100644 --- a/crates/matrix-sdk/src/sliding_sync/mod.rs +++ b/crates/matrix-sdk/src/sliding_sync/mod.rs @@ -299,7 +299,7 @@ impl SlidingSync { // extensions part of the response, and thus would result in rooms present in // the `sync_response.joined`. Mark them as updated too. // - // Since we've removed rooms that we're in the room subsection from + // Since we've removed rooms that were in the room subsection from // `sync_response.rooms.joined`, the remaining ones aren't already present in // `updated_rooms` and wouldn't cause any duplicates. updated_rooms.extend(sync_response.rooms.joined.keys().cloned());