From 1cc5903ce81833b4f33999124a7397f595c75551 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E4=B8=89=E5=92=B2=E9=9B=85=20misaki=20masa?= Date: Thu, 19 Feb 2026 13:21:13 +0800 Subject: [PATCH] Update yazi-shared/src/sync_cell.rs Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --- yazi-shared/src/sync_cell.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/yazi-shared/src/sync_cell.rs b/yazi-shared/src/sync_cell.rs index 9eb3338e..cc434150 100644 --- a/yazi-shared/src/sync_cell.rs +++ b/yazi-shared/src/sync_cell.rs @@ -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(Cell);