chore: improve wording

Andrey Nering and Carlos Alexandro Becker created

Co-authored-by: Carlos Alexandro Becker <caarlos0@users.noreply.github.com>

Change summary

internal/llm/tools/bash.go | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)

Detailed changes

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".