Skip to content

Commit 98d0bcd

Browse files
authored
Merge pull request KnpLabs#397 from ka7/spelling
trivial spelling fixes
2 parents eea342d + e672cdd commit 98d0bcd

File tree

8 files changed

+9
-9
lines changed

8 files changed

+9
-9
lines changed

doc/activity.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ $owner = "KnpLabs";
7373
$repo = "php-github-api";
7474
$activity = $client->api('current_user')->watchers()->check($owner, $repo);
7575
```
76-
Throws an Exception with code 404 in case that the repo is not beeing watched by the authenticated user or NULL in case that it is beeing watched by the authenticated user.
76+
Throws an Exception with code 404 in case that the repo is not being watched by the authenticated user or NULL in case that it is being watched by the authenticated user.
7777

7878
### Watch a specific repo for authenticated user
7979

doc/organization/webhooks.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ $success = $client->organization()->update('KnpLabs', 123, array(
7272
Update an existing webhook with ID 123 for the organization.
7373
*url* parameter is required.
7474

75-
In case of success, an array of informations about the webhook will be returned.
75+
In case of success, an array of information about the webhook will be returned.
7676

7777
### Ping a webhook for an organization
7878

doc/users.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ $user = $client->api('user')->show('KnpLabs');
3636

3737
Returns an array of information about the user.
3838

39-
### Update user informations
39+
### Update user information
4040

4141
> Requires [authentication](security.md).
4242

lib/Github/Api/GitData/Blobs.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
class Blobs extends AbstractApi
1313
{
1414
/**
15-
* Configure the Acccept header depending on the blob type.
15+
* Configure the Accept header depending on the blob type.
1616
*
1717
* @param string|null $bodyType
1818
*/

lib/Github/Api/Meta.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ class Meta extends AbstractApi
1313
/**
1414
* Get the ip address of the hook and git servers for the GitHub.com service.
1515
*
16-
* @return array Informations about the service of GitHub.com
16+
* @return array Information about the service of GitHub.com
1717
*/
1818
public function service()
1919
{

lib/Github/Api/Organization.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ public function all($since = '')
3232
*
3333
* @param string $organization the organization to show
3434
*
35-
* @return array informations about the organization
35+
* @return array information about the organization
3636
*/
3737
public function show($organization)
3838
{

lib/Github/Api/Repo.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ public function org($organization, array $params = array())
111111
* @param string $username the user who owns the repository
112112
* @param string $repository the name of the repository
113113
*
114-
* @return array informations about the repository
114+
* @return array information about the repository
115115
*/
116116
public function show($username, $repository)
117117
{
@@ -177,7 +177,7 @@ public function create(
177177
* @param string $repository the name of the repository
178178
* @param array $values the key => value pairs to post
179179
*
180-
* @return array informations about the repository
180+
* @return array information about the repository
181181
*/
182182
public function update($username, $repository, array $values)
183183
{

lib/Github/Api/User.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ public function all($id = null)
5050
*
5151
* @param string $username the username to show
5252
*
53-
* @return array informations about the user
53+
* @return array information about the user
5454
*/
5555
public function show($username)
5656
{

0 commit comments

Comments
 (0)