From edec1ba640cc5d08c8e8d593dcf4ce1b05f8f337 Mon Sep 17 00:00:00 2001 From: Andrey Nering Date: Mon, 14 Jul 2025 16:43:50 -0300 Subject: [PATCH] chore: improve wording Co-authored-by: Carlos Alexandro Becker --- internal/llm/tools/bash.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/internal/llm/tools/bash.go b/internal/llm/tools/bash.go index bee06caf110d5c4e47ae9bfabbf7909942e8346b..3b6d94de7687a0a0842c44b64fc3d0ab55a785c3 100644 --- a/internal/llm/tools/bash.go +++ b/internal/llm/tools/bash.go @@ -117,8 +117,8 @@ func bashDescription() string { CROSS-PLATFORM SHELL SUPPORT: * This tool uses a shell interpreter (mvdan/sh) that mimics the Bash language, - so you should use Bash syntax even on all platforms, even on Windows. - The most common shell builtins and core utils are available even on Windows as + so you should use Bash syntax in all platforms, including Windows. + The most common shell builtins and core utils are available in Windows as well. * Make sure to use forward slashes (/) as path separators in commands, even on Windows. Example: "ls C:/foo/bar" instead of "ls C:\foo\bar".