Skip to content

Commit

Permalink
Merge pull request #397 from ka7/spelling
Browse files Browse the repository at this point in the history
trivial spelling fixes
  • Loading branch information
cursedcoder committed Jul 26, 2016
2 parents eea342d + e672cdd commit 98d0bcd
Show file tree
Hide file tree
Showing 8 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion doc/activity.md
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ $owner = "KnpLabs";
$repo = "php-github-api";
$activity = $client->api('current_user')->watchers()->check($owner, $repo);
```
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.
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.

### Watch a specific repo for authenticated user

Expand Down
2 changes: 1 addition & 1 deletion doc/organization/webhooks.md
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ $success = $client->organization()->update('KnpLabs', 123, array(
Update an existing webhook with ID 123 for the organization.
*url* parameter is required.

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

### Ping a webhook for an organization

Expand Down
2 changes: 1 addition & 1 deletion doc/users.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ $user = $client->api('user')->show('KnpLabs');

Returns an array of information about the user.

### Update user informations
### Update user information

> Requires [authentication](security.md).
Expand Down
2 changes: 1 addition & 1 deletion lib/Github/Api/GitData/Blobs.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
class Blobs extends AbstractApi
{
/**
* Configure the Acccept header depending on the blob type.
* Configure the Accept header depending on the blob type.
*
* @param string|null $bodyType
*/
Expand Down
2 changes: 1 addition & 1 deletion lib/Github/Api/Meta.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ class Meta extends AbstractApi
/**
* Get the ip address of the hook and git servers for the GitHub.com service.
*
* @return array Informations about the service of GitHub.com
* @return array Information about the service of GitHub.com
*/
public function service()
{
Expand Down
2 changes: 1 addition & 1 deletion lib/Github/Api/Organization.php
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ public function all($since = '')
*
* @param string $organization the organization to show
*
* @return array informations about the organization
* @return array information about the organization
*/
public function show($organization)
{
Expand Down
4 changes: 2 additions & 2 deletions lib/Github/Api/Repo.php
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ public function org($organization, array $params = array())
* @param string $username the user who owns the repository
* @param string $repository the name of the repository
*
* @return array informations about the repository
* @return array information about the repository
*/
public function show($username, $repository)
{
Expand Down Expand Up @@ -177,7 +177,7 @@ public function create(
* @param string $repository the name of the repository
* @param array $values the key => value pairs to post
*
* @return array informations about the repository
* @return array information about the repository
*/
public function update($username, $repository, array $values)
{
Expand Down
2 changes: 1 addition & 1 deletion lib/Github/Api/User.php
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ public function all($id = null)
*
* @param string $username the username to show
*
* @return array informations about the user
* @return array information about the user
*/
public function show($username)
{
Expand Down

0 comments on commit 98d0bcd

Please sign in to comment.