diff --git a/content/copilot/github-copilot-in-the-cli/using-github-copilot-in-the-cli.md b/content/copilot/github-copilot-in-the-cli/using-github-copilot-in-the-cli.md index 7696376eb9..27f05c3549 100644 --- a/content/copilot/github-copilot-in-the-cli/using-github-copilot-in-the-cli.md +++ b/content/copilot/github-copilot-in-the-cli/using-github-copilot-in-the-cli.md @@ -87,7 +87,7 @@ The following examples show how to add the alias configurations to your Bash, Po **Bash** -Add the following to your Bash configuration file: +Run the following to add the aliases to your Bash configuration file: ```shell copy echo 'eval "$(gh copilot alias -- bash)"' >> ~/.bashrc @@ -95,7 +95,7 @@ echo 'eval "$(gh copilot alias -- bash)"' >> ~/.bashrc **PowerShell** -Add the following to your PowerShell profile: +Run the following to add the aliases to your PowerShell profile: ```shell copy $GH_COPILOT_PROFILE = Join-Path -Path $(Split-Path -Path $PROFILE -Parent) -ChildPath "gh-copilot.ps1" @@ -105,7 +105,7 @@ echo ". $GH_COPILOT_PROFILE" >> $PROFILE **Zsh** -Add the following to your Zsh configuration file: +Run the following to add the aliases to your Zsh configuration file: ```shell copy echo 'eval "$(gh copilot alias -- zsh)"' >> ~/.zshrc