Skip to content

Commit d3138c7

Browse files
authored
Merge pull request #679 from Vedrillan/patch-1
Typo fix on assignee documentation
2 parents 5419b5e + 0c2639b commit d3138c7

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

doc/issue/assignees.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,17 +12,17 @@ $assignees = $client->api('issue')->assignees()->listAvailable('KnpLabs', 'php-g
1212
### Check if a user is an available assignee
1313

1414
```php
15-
$info = $client->api('issue')->assignees()->check('KnpLabs', 'php-github-api', 'test-user);
15+
$info = $client->api('issue')->assignees()->check('KnpLabs', 'php-github-api', 'test-user');
1616
```
1717

1818
### Add assignee
1919

2020
```php
21-
$client->api('issue')->assignees()->add('KnpLabs', 'php-github-api', 4, ['assignees' => 'test-user]);
21+
$client->api('issue')->assignees()->add('KnpLabs', 'php-github-api', 4, ['assignees' => 'test-user']);
2222
```
2323

2424
### Remove assignee
2525

2626
```php
27-
$client->api('issue')->assignees()->remove('KnpLabs', 'php-github-api', 4, ['assignees' => 'test-user]);
27+
$client->api('issue')->assignees()->remove('KnpLabs', 'php-github-api', 4, ['assignees' => 'test-user']);
2828
```

0 commit comments

Comments
 (0)