From 385f7aa86d4ebee312d38e45fdf18a0b201da46f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jorge=20Mart=C3=ADn?= Date: Fri, 14 Nov 2025 11:51:53 +0100 Subject: [PATCH] doc: Fix docs for `ffi::Timeline::latest_event_id` --- bindings/matrix-sdk-ffi/src/timeline/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bindings/matrix-sdk-ffi/src/timeline/mod.rs b/bindings/matrix-sdk-ffi/src/timeline/mod.rs index 49f8f2b6f..1c8a30e2f 100644 --- a/bindings/matrix-sdk-ffi/src/timeline/mod.rs +++ b/bindings/matrix-sdk-ffi/src/timeline/mod.rs @@ -365,7 +365,7 @@ impl Timeline { Ok(()) } - /// Returns the [`EventId`] of the latest event in the timeline. + /// Returns the latest [`EventId`] in the timeline. pub async fn latest_event_id(&self) -> Option { self.inner.latest_event_id().await.as_deref().map(ToString::to_string) }