diff --git a/eyeball-im-util/src/vector/filter.rs b/eyeball-im-util/src/vector/filter.rs index 4ed1387..6cec433 100644 --- a/eyeball-im-util/src/vector/filter.rs +++ b/eyeball-im-util/src/vector/filter.rs @@ -18,8 +18,6 @@ use super::{ pin_project! { /// A [`VectorDiff`] stream adapter that presents a filtered view of the /// underlying [`ObservableVector`]s items. - /// - /// Created through [`VectorExt::subscribe_filtered`]. pub struct Filter { #[pin] inner: FilterImpl, @@ -81,8 +79,6 @@ where pin_project! { /// A [`VectorDiff`] stream adapter that presents a filter+mapped view of /// the underlying [`ObservableVector`]s items. - /// - /// Created through [`VectorExt::subscribe_filter_mapped`]. pub struct FilterMap { #[pin] inner: FilterImpl,