Fix typo in example in USAGE.md (#297)

Changes an opening brace to parenthesis because `Add-GitHubIssueLabel` takes an array of label strings.
This commit is contained in:
Ted Hudek 2020-10-23 12:10:37 -07:00 коммит произвёл GitHub
Родитель ec7950c02c
Коммит 28e20d4a2a
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -457,7 +457,7 @@ Remove-GitHubLabel -OwnerName PowerShell -RepositoryName DesiredStateConfigurati
#### Adding Labels to an Issue
```powershell
$labelNames = @{'bug', 'discussion')
$labelNames = @('bug', 'discussion')
Add-GitHubIssueLabel -OwnerName $script:ownerName -RepositoryName $repositoryName -Issue 1 -LabelName $labelNames
```