Skip to content

Commit 556f7d9

Browse files
bobeaganNyholm
authored andcommitted
Fix milestone doc typo (#575)
* fix typo in milestone doc page * change header text to be more clear now that github has the concept of "projects" it makes sense to not misuse that term here
1 parent d88dbc6 commit 556f7d9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

doc/issue/milestones.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
Wraps [GitHub Issue Milestones API](http://developer.github.com/v3/issues/milestones/).
55

6-
### List project milestones
6+
### List milestones for a repository
77

88
```php
99
$milestones = $client->api('issue')->milestones()->all('KnpLabs', 'php-github-api');
@@ -27,7 +27,7 @@ $milestone = $client->api('issue')->milestones()->create('KnpLabs', 'php-github-
2727
$milestone = $client->api('issue')->milestones()->update('KnpLabs', 'php-github-api', 123, array('title' => '3.0'));
2828
```
2929

30-
### Remove a milestonre
30+
### Remove a milestone
3131

3232
```php
3333
$client->api('issue')->milestones()->remove('KnpLabs', 'php-github-api', 123);

0 commit comments

Comments
 (0)