Skip to content

Commit 28e20d4

Browse files
authored
Fix typo in example in USAGE.md (#297)
Changes an opening brace to parenthesis because `Add-GitHubIssueLabel` takes an array of label strings.
1 parent ec7950c commit 28e20d4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

USAGE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -457,7 +457,7 @@ Remove-GitHubLabel -OwnerName PowerShell -RepositoryName DesiredStateConfigurati
457457

458458
#### Adding Labels to an Issue
459459
```powershell
460-
$labelNames = @{'bug', 'discussion')
460+
$labelNames = @('bug', 'discussion')
461461
Add-GitHubIssueLabel -OwnerName $script:ownerName -RepositoryName $repositoryName -Issue 1 -LabelName $labelNames
462462
```
463463

0 commit comments

Comments
 (0)