From 8ef5c93a28e785e8f23243ac896d96996629ff0a Mon Sep 17 00:00:00 2001 From: Bob Eagan Date: Mon, 24 Apr 2017 10:31:42 -0700 Subject: [PATCH 1/2] fix typo in milestone doc page --- doc/issue/milestones.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/issue/milestones.md b/doc/issue/milestones.md index 25ead337894..a10df221edc 100644 --- a/doc/issue/milestones.md +++ b/doc/issue/milestones.md @@ -27,7 +27,7 @@ $milestone = $client->api('issue')->milestones()->create('KnpLabs', 'php-github- $milestone = $client->api('issue')->milestones()->update('KnpLabs', 'php-github-api', 123, array('title' => '3.0')); ``` -### Remove a milestonre +### Remove a milestone ```php $client->api('issue')->milestones()->remove('KnpLabs', 'php-github-api', 123); From 4bd623f628c22d69ba172328932e9ff8c3bee923 Mon Sep 17 00:00:00 2001 From: Bob Eagan Date: Mon, 24 Apr 2017 10:32:17 -0700 Subject: [PATCH 2/2] change header text to be more clear now that github has the concept of "projects" it makes sense to not misuse that term here --- doc/issue/milestones.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/issue/milestones.md b/doc/issue/milestones.md index a10df221edc..e376d221fa6 100644 --- a/doc/issue/milestones.md +++ b/doc/issue/milestones.md @@ -3,7 +3,7 @@ Wraps [GitHub Issue Milestones API](http://developer.github.com/v3/issues/milestones/). -### List project milestones +### List milestones for a repository ```php $milestones = $client->api('issue')->milestones()->all('KnpLabs', 'php-github-api');