Update yazi-shared/src/sync_cell.rs

Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
This commit is contained in:
三咲雅 misaki masa 2026-02-19 13:21:13 +08:00 committed by GitHub
parent c3977fe625
commit 1cc5903ce8
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -4,7 +4,7 @@ use serde::{Deserialize, Deserializer, Serialize, Serializer};
/// [`Cell`], but [`Sync`].
///
/// This is just an `Cell`, except it implements `Sync`
/// This is just a `Cell`, except it implements `Sync`
/// if `T` implements `Sync`.
pub struct SyncCell<T: ?Sized>(Cell<T>);