Skip to content

Commit 76086c4

Browse files
committed
🐛 Fix hashset by providing the fully qualified type name
1 parent d2ce340 commit 76086c4

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/public/ConvertTo-Hashset.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ $set = Get-Values |ConvertTo-Hashset
2424
Returns a hashset of values from the pipeline.
2525
#>
2626

27-
[CmdletBinding()][OutputType([HashSet`1])] Param(
27+
[CmdletBinding()][OutputType([System.Collections.Generic.HashSet`1])] Param(
2828
# A collection to build a HashSet from.
2929
[Parameter(ParameterSetName='FromCollection',Position=0,Mandatory=$true)][Collections.IEnumerable] $FromCollection,
3030
# Values from pipeline to build a HashSet from.

0 commit comments

Comments
 (0)