From e7025675279013c551bfdf4e326eca199a0f9921 Mon Sep 17 00:00:00 2001 From: Ry Racherbaumer Date: Thu, 27 Jun 2024 22:45:36 -0500 Subject: [PATCH] Fix lint issue in FFI bindings --- bindings_ffi/src/v2.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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>>>, }