From 96609151c657dc40cf2adbf02a97a3943d1f61ca Mon Sep 17 00:00:00 2001 From: Lucas Date: Fri, 6 Jun 2025 13:23:25 +0800 Subject: [PATCH] Fix typo in assistant_tool.rs (#32207) Release Notes: - N/A --- crates/assistant_tool/src/assistant_tool.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/assistant_tool/src/assistant_tool.rs b/crates/assistant_tool/src/assistant_tool.rs index 6c08a61cf4..554b3f3f3c 100644 --- a/crates/assistant_tool/src/assistant_tool.rs +++ b/crates/assistant_tool/src/assistant_tool.rs @@ -214,7 +214,7 @@ pub trait Tool: 'static + Send + Sync { ToolSource::Native } - /// Returns true iff the tool needs the users's confirmation + /// Returns true if the tool needs the users's confirmation /// before having permission to run. fn needs_confirmation(&self, input: &serde_json::Value, cx: &App) -> bool;