Skip to content

Commit

Permalink
📝 Fix OutputType declaraction in Get-Karma
Browse files Browse the repository at this point in the history
Typo fix - was meant to be two separate type names.
  • Loading branch information
vexx32 committed Jul 10, 2020
1 parent 5601f3f commit 94c9ee8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion PSKoans/Public/Get-Karma.ps1
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
function Get-Karma {
[CmdletBinding(DefaultParameterSetName = 'Default',
HelpUri = 'https://github.com/vexx32/PSKoans/tree/main/docs/Get-Karma.md')]
[OutputType('PSKoans.Result, PSKoans.CompleteResult')]
[OutputType('PSKoans.Result', 'PSKoans.CompleteResult')]
[Alias()]
param(
[Alias('Koan', 'File')]
Expand Down

0 comments on commit 94c9ee8

Please sign in to comment.