From 89ed2643ed00589a6f8030fa195fb8e435c09ada Mon Sep 17 00:00:00 2001 From: Jason Lee Date: Thu, 19 Dec 2024 10:07:36 +0800 Subject: [PATCH] typo --- crates/ui/src/dock/panel.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/crates/ui/src/dock/panel.rs b/crates/ui/src/dock/panel.rs index f04b9107..d0bbd1f4 100644 --- a/crates/ui/src/dock/panel.rs +++ b/crates/ui/src/dock/panel.rs @@ -59,9 +59,9 @@ pub trait Panel: EventEmitter + FocusableView { true } - /// Set actived state of the panel. + /// Set active state of the panel. /// - /// This method will be called when the panel is actived or unactived. + /// This method will be called when the panel is active or inactive. #[allow(unused_variables)] fn set_active(&self, active: bool, cx: &ViewContext) {}