File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff 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
3232You 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');
You can’t perform that action at this time.
0 commit comments