From 9f196be2f688051dfffe3e1b14c8d312df8ab997 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?K=C3=A9vin=20Commaille?= Date: Tue, 20 May 2025 09:46:36 +0200 Subject: [PATCH] Fix doc link MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Kévin Commaille --- crates/matrix-sdk/src/room/mod.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/crates/matrix-sdk/src/room/mod.rs b/crates/matrix-sdk/src/room/mod.rs index c887ab233..463c1d9be 100644 --- a/crates/matrix-sdk/src/room/mod.rs +++ b/crates/matrix-sdk/src/room/mod.rs @@ -3163,8 +3163,8 @@ impl Room { /// Set a flag on the room to indicate that the user has explicitly marked /// it as (un)read. /// - /// This is a no-op if [`Room::is_marked_unread()`] returns the same value - /// as `unread`. + /// This is a no-op if [`BaseRoom::is_marked_unread()`] returns the same + /// value as `unread`. pub async fn set_unread_flag(&self, unread: bool) -> Result<()> { if self.is_marked_unread() == unread { // The request is not necessary.