Skip to content

Commit 32b6ff3

Browse files
spelling
1 parent 536d3dd commit 32b6ff3

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

doc/authorizations.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ $authorizations = $github->api('authorizations')->all();
1515
$authorization = $github->api('authorizations')->show(1);
1616
```
1717

18-
#### Create a authorization
18+
#### Create an authorization
1919

2020
```php
2121
$data = array(
@@ -25,9 +25,9 @@ $data = array(
2525
$authorization = $github->api('authorizations')->create($data);
2626
```
2727

28-
Creates and returns a authorization.
28+
Creates and returns an authorization.
2929

30-
#### Update a authorization
30+
#### Update an authorization
3131

3232
You can update ``note``.
3333

@@ -39,13 +39,13 @@ $data = array(
3939
$authorization = $github->api('authorizations')->update(1234, $data);
4040
```
4141

42-
#### Delete a authorization
42+
#### Delete an authorization
4343

4444
```php
4545
$authorization = $github->api('authorizations')->remove(1234);
4646
```
4747

48-
#### Check a authorization
48+
#### Check an authorization
4949

5050
```php
5151
$authorization = $github->api('authorizations')->check(1234, 'token');

0 commit comments

Comments
 (0)