Skip to content

Commit ef27f62

Browse files
Jaykuljohlju
andauthored
Apply typo corrections from code review
Co-authored-by: Johan Ljunggren <johlju@users.noreply.github.com>
1 parent 4e53bd9 commit ef27f62

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Tests/Private/GetCommandAlias.Tests.ps1

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ Describe "GetCommandAlias" {
6363
$Result | Should -Be 'Alias1', 'Alias2', 'Alias3', 'Alias4', 'Alias5'
6464
}
6565

66-
It "Ingores aliases defined in nested function scope" {
66+
It "Ignores aliases defined in nested function scope" {
6767
$Result = &$CommandInfo -Ast {
6868
New-Alias -Name 'Alias1' -Value 'Write-Verbose'
6969
New-Alias -Value 'Write-Verbose' -Name 'Alias2'
@@ -105,7 +105,7 @@ Describe "GetCommandAlias" {
105105
$Result | Should -Be 'Alias1', 'Alias2', 'Alias3', 'Alias4', 'Alias5'
106106
}
107107

108-
It "Ingores aliases defined in nested function scope" {
108+
It "Ignores aliases defined in nested function scope" {
109109
$Result = &$CommandInfo -Ast {
110110
Set-Alias -Name 'Alias1' -Value 'Write-Verbose'
111111
Set-Alias -Value 'Write-Verbose' -Name 'Alias2'
@@ -151,7 +151,7 @@ Describe "GetCommandAlias" {
151151
$Result | Should -Be 'Alias3', 'Alias4'
152152
}
153153

154-
It "Ingores removals in function scopes" {
154+
It "Ignores removals in function scopes" {
155155
$Result = &$CommandInfo -Ast {
156156
Set-Alias -Name 'Alias1' -Value 'Write-Verbose'
157157
New-Alias -Value 'Write-Verbose' -Name 'Alias2'

0 commit comments

Comments
 (0)