From e32671335d0eee117a21947794cd303592382179 Mon Sep 17 00:00:00 2001 From: SeaDve Date: Fri, 10 Nov 2023 02:12:38 +0000 Subject: [PATCH] deploy: afc4eddb4b70d034120e9e28295fe505e6780aee --- src/mpris_server/local_server.rs.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mpris_server/local_server.rs.html b/src/mpris_server/local_server.rs.html index 3de07bc..c55a4b2 100644 --- a/src/mpris_server/local_server.rs.html +++ b/src/mpris_server/local_server.rs.html @@ -1147,7 +1147,7 @@ // If we use `PhantomData<T>` and `T` is not `Send` and `Sync`, we get a compile error // when using `InnerImp` in the inner non-local `Server` as it requires `T` to be `Send` - // and `Sync`, which defeats the purpose of `local::Server`. So, we need to use `fn() -> T` + // and `Sync`, which defeats the purpose of `LocalServer`. So, we need to use `fn() -> T` // in `PhantomData` to preserve the type information without requiring `T` to be `Send` // and `Sync` for `InnerImp` to be `Send` and `Sync`. imp_ty: PhantomData<fn() -> T>,