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>,