From 352676158098cab5e93fc4a525bc752a4ddfa2aa Mon Sep 17 00:00:00 2001 From: Ivan Enderlin Date: Mon, 9 Dec 2024 17:10:02 +0100 Subject: [PATCH] doc(ui): Unfold a `Self` in the doc. --- .../matrix-sdk-ui/src/timeline/controller/observable_items.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/crates/matrix-sdk-ui/src/timeline/controller/observable_items.rs b/crates/matrix-sdk-ui/src/timeline/controller/observable_items.rs index 7d36c1ade..ab6d99295 100644 --- a/crates/matrix-sdk-ui/src/timeline/controller/observable_items.rs +++ b/crates/matrix-sdk-ui/src/timeline/controller/observable_items.rs @@ -180,8 +180,8 @@ impl Deref for ObservableItemsEntry<'_> { /// an atomic unit. /// /// For updates from the transaction to have affect, it has to be finalized with -/// [`Self::commit`]. If the transaction is dropped without that method being -/// called, the updates will be discarded. +/// [`ObservableItemsTransaction::commit`]. If the transaction is dropped +/// without that method being called, the updates will be discarded. #[derive(Debug)] pub struct ObservableItemsTransaction<'observable_items> { items: ObservableVectorTransaction<'observable_items, Arc>,