Skip to content

Commit 013ff07

Browse files
committed
Fix a typo
1 parent cac864c commit 013ff07

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

shell/AIShell.Kernel/MCP/BuiltInTool.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -342,7 +342,7 @@ internal async Task<PipeMessage> CallAsync(
342342

343343
_shell.Host.RenderBuiltInToolCallRequest(OriginalName, explanation, Tuple.Create("command", command));
344344
// Prompt for user's approval to call the tool.
345-
const string title = "\n\u26A0 Malicious converstaion content may attempt to misuse 'AIShell' through the built-in tools. Please carefully review any requested actions to decide if you want to proceed.";
345+
const string title = "\n\u26A0 Malicious conversation content may attempt to misuse 'AIShell' through the built-in tools. Please carefully review any requested actions to decide if you want to proceed.";
346346
string choice = await _shell.Host.PromptForSelectionAsync(
347347
title: title,
348348
choices: McpTool.UserChoices,

shell/AIShell.Kernel/MCP/McpTool.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ internal async ValueTask<CallToolResponse> CallAsync(
116116
_host.RenderMcpToolCallRequest(this, jsonArgs);
117117

118118
// Prompt for user's approval to call the tool.
119-
const string title = "\n\u26A0 MCP servers or malicious converstaion content may attempt to misuse 'AIShell' through the installed tools. Please carefully review any requested actions to decide if you want to proceed.";
119+
const string title = "\n\u26A0 MCP servers or malicious conversation content may attempt to misuse 'AIShell' through the installed tools. Please carefully review any requested actions to decide if you want to proceed.";
120120
string choice = await _host.PromptForSelectionAsync(
121121
title: title,
122122
choices: UserChoices,

0 commit comments

Comments
 (0)