diff --git a/bindings_ffi/src/v2.rs b/bindings_ffi/src/v2.rs index c40bf23cc..932650f55 100644 --- a/bindings_ffi/src/v2.rs +++ b/bindings_ffi/src/v2.rs @@ -293,7 +293,7 @@ pub trait FfiV2SubscriptionCallback: Send + Sync { pub struct FfiV2Subscription { tx: mpsc::Sender, abort: AbortHandle, - // we require Arc> here because uniffi doesn't like &mut self, or the owned version of self on exported methods + // we require Arc> here because uniffi doesn't like &mut self, or the owned version of self on exported methods #[allow(clippy::type_complexity)] handle: Arc>>>, }