diff --git a/eyeball-im/src/vector.rs b/eyeball-im/src/vector.rs index 209d693..939da5a 100644 --- a/eyeball-im/src/vector.rs +++ b/eyeball-im/src/vector.rs @@ -196,8 +196,8 @@ impl ObservableVector { } } - /// Gets an [`ObservableVectorEntry`] for the given index, through which - /// only the element at that index alone can be updated or removed. + /// Gets an entry for the given index, through which only the element at + /// that index alone can be updated or removed. /// /// # Panics /// diff --git a/eyeball-im/src/vector/transaction.rs b/eyeball-im/src/vector/transaction.rs index 52cac0e..200fa5e 100644 --- a/eyeball-im/src/vector/transaction.rs +++ b/eyeball-im/src/vector/transaction.rs @@ -151,8 +151,8 @@ impl<'o, T: Clone + Send + Sync + 'static> ObservableVectorTransaction<'o, T> { } } - /// Gets an [`ObservableVectorEntry`] for the given index, through which - /// only the element at that index alone can be updated or removed. + /// Gets an entry for the given index through which only the element at that + /// index alone can be updated or removed. /// /// # Panics ///