Skip to content

Commit

Permalink
Swapping double quotes to single quotes
Browse files Browse the repository at this point in the history
  • Loading branch information
roberttoups committed Nov 8, 2023
1 parent 3ba6d30 commit 72379a3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Public/Invoke-IPv4ListSort.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -110,11 +110,11 @@ function Invoke-IPv4ListSort {
}
}
if($Descending) {
Write-Verbose -Message "Sorting IPv4 Addresses in Descending order"
Write-Verbose -Message 'Sorting IPv4 Addresses in Descending order'
[System.Array]$SortedIPv4AddressList = $ValidatedIPv4AddressList |
Sort-Object -Property @{Expression = { $_ -as [System.Version] } } -Descending -Unique
} else {
Write-Verbose -Message "Sorting IPv4 Addresses in Ascending order"
Write-Verbose -Message 'Sorting IPv4 Addresses in Ascending order'
[System.Array]$SortedIPv4AddressList = $ValidatedIPv4AddressList |
Sort-Object -Property @{Expression = { $_ -as [System.Version] } } -Unique
}
Expand Down

0 comments on commit 72379a3

Please sign in to comment.