From 58eab941ead1c1b6728851a071926bddd73ff5f7 Mon Sep 17 00:00:00 2001 From: Ruben Gonzalez <62808802+rubengonzalez-dev@users.noreply.github.com> Date: Wed, 30 Sep 2020 01:33:16 -0400 Subject: [PATCH] Update AvoidUsingCmdletAliases.md Adding the letter 'e' to the word 'execute' --- RuleDocumentation/AvoidUsingCmdletAliases.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/RuleDocumentation/AvoidUsingCmdletAliases.md b/RuleDocumentation/AvoidUsingCmdletAliases.md index 39d7437d0..6bcac0126 100644 --- a/RuleDocumentation/AvoidUsingCmdletAliases.md +++ b/RuleDocumentation/AvoidUsingCmdletAliases.md @@ -5,7 +5,7 @@ ## Description An alias is an alternate name or nickname for a CMDLet or for a command element, such as a function, script, file, or executable file. -You can use the alias instead of the command name in any Windows PowerShell commands. There are also implicit aliases: When PowerShell cannot find the cmdlet name, it will try to append `Get-` to the command as a last resort before, therefore e.g. `verb` will excute `Get-Verb`. +You can use the alias instead of the command name in any Windows PowerShell commands. There are also implicit aliases: When PowerShell cannot find the cmdlet name, it will try to append `Get-` to the command as a last resort before, therefore e.g. `verb` will execute `Get-Verb`. Every PowerShell author learns the actual command names, but different authors learn and use different aliases. Aliases can make code difficult to read, understand and impact availability.