From 9493ef11fc303627c491142f456b1a473dcaa9e1 Mon Sep 17 00:00:00 2001 From: Perry <62119804+perrylets@users.noreply.github.com> Date: Tue, 15 Aug 2023 15:56:39 -0300 Subject: [PATCH] Update README.md --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 57f9571..e07bbe4 100644 --- a/README.md +++ b/README.md @@ -15,8 +15,8 @@ Task dotnetTask = dotnet.RunAsync(); // Runs asynchronously. Console.WriteLine("Dotnet help running..."); await dotnetTask; -Command shell = Command.Shell("dotnet", "--help"); // Creates the command for a shell. PowerShell on Windows, BASH on Linux/macOS. -shell.Run(); // Passing args with `Run` for shell command is not recommended. +Command shell = Command.Shell("dotnet", "--help"); // Creates the shell command. PowerShell on Windows, BASH on Linux/macOS. +shell.Run(); // Passing args with `Run` for shell commands is not recommended. ``` Check more information about the `Command` class in the [Wiki (empty for now)](https://github.com/perrylets/CommandExec/wiki) or the doc comments.