Skip to content

Commit 0545890

Browse files
author
Tim Fletcher
committed
Fix some typos
1 parent 136941d commit 0545890

File tree

11 files changed

+18
-18
lines changed

11 files changed

+18
-18
lines changed

content/v3/git/blobs.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ title: Git Blobs | GitHub API
55
# Blobs API
66

77
Since blobs can be any arbitrary binary data, the input and responses
8-
for the blob api takes an encoding parameter that can be either `utf-8`
8+
for the blob API takes an encoding parameter that can be either `utf-8`
99
or `base64`. If your data cannot be losslessly sent as a UTF-8 string,
1010
you can base64 encode it.
1111

content/v3/git/refs.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ For a full refs listing, you'll get something that looks like:
4141

4242
POST /repos/:user/:repo/git/refs
4343

44-
### Paramaters
44+
### Parameters
4545

4646
ref
4747
: _String_ of the name of the fully qualified reference (ie: `refs/heads/master`).
@@ -59,7 +59,7 @@ sha
5959

6060
PATCH /repos/:user/:repo/git/refs/:ref
6161

62-
### Paramaters
62+
### Parameters
6363

6464
sha
6565
: _String_ of the SHA1 value to set this reference to

content/v3/git/tags.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ title: Git Tags | GitHub API
44

55
# Tags API
66

7-
This tags api only deals with tag objects - so only annotated tags, not
7+
This tags API only deals with tag objects - so only annotated tags, not
88
lightweight tags.
99

1010
## Get a Tag

content/v3/oauth.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -179,14 +179,14 @@ scopes
179179
### Input
180180

181181
scopes
182-
: _Optional_ **array** - Replaces the authorization' scopes with these.
182+
: _Optional_ **array** - Replaces the authorization scopes with these.
183183

184184
add_scopes
185185
: _Optional_ **array** - A list of scopes to add to this authorization.
186186

187187
remove_scopes
188188
: _Optional_ **array** - A list of scopes to remove from this
189-
authorizatin.
189+
authorization.
190190

191191
You can only send one of these scope keys at a time.
192192

content/v3/orgs.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ company
4242
: _Optional_ **string**
4343

4444
email
45-
: _Optional_ **string** - Publically visible email address.
45+
: _Optional_ **string** - Publicly visible email address.
4646

4747
location
4848
: _Optional_ **string**

content/v3/orgs/teams.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ title: Organization Teams | GitHub API
55
# Org Teams API
66

77
All actions against teams require at a minimum an authenticated user who
8-
is a member of the owner's team in the `:org` being managed. Api calls
8+
is a member of the owner's team in the `:org` being managed. API calls
99
that require explicit permissions are noted.
1010

1111
## List teams
@@ -44,13 +44,13 @@ repo\_names
4444
permission
4545
: _Optional_ **string**
4646

47-
`pull` - team members can pull, but not push or administor this
47+
`pull` - team members can pull, but not push or administer this
4848
repositories. **Default**
4949

50-
`push` - team members can pull and push, but not administor this
50+
`push` - team members can pull and push, but not administer this
5151
repositores.
5252

53-
`admin` - team members can pull, push and administor these
53+
`admin` - team members can pull, push and administer these
5454
repositories.
5555

5656
<%= json \

content/v3/repos/collaborators.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,11 @@ title: Repo Collaborators | GitHub API
1717

1818
GET /repos/:user/:repo/collaborators/:user
1919

20-
### Reponse if user is a collaborator
20+
### Response if user is a collaborator
2121

2222
<%= headers 204 %>
2323

24-
### Reponse if user is not a collaborator
24+
### Response if user is not a collaborator
2525

2626
<%= headers 404 %>
2727

content/v3/repos/hooks.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ The default event is `push`. The available events are:
1515
* `issues` - Any time an Issue is opened or closed.
1616
* `issue_comment` - Any time an Issue is commented on.
1717
* `commit_comment` - Any time a Commit is commented on.
18-
* `pull_request` - Any time a Pull Request is opend, closed, or
18+
* `pull_request` - Any time a Pull Request is opened, closed, or
1919
synchronized (updated due to a new push in the branch that the pull
2020
request is tracking).
2121
* `gollum` - Any time a Wiki page is updated.
@@ -30,7 +30,7 @@ request is tracking).
3030

3131
For a Hook to go through, the Hook needs to be configured to trigger for
3232
an event, and the Service has to listen to it. The Services are all
33-
part of the open source [github-services](https://github.com/github/github-services) project.Most of the Services only listen for `push` events. However, the generic [Web Service](https://github.com/github/github-services/blob/master/services/web.rb) listens for all events. Other services like the [IRC Service](https://github.com/github/github-services/blob/master/services/irc.rb) may only listen for `push`, `issues`, and `pull_request` events.
33+
part of the open source [github-services](https://github.com/github/github-services) project. Most of the Services only listen for `push` events. However, the generic [Web Service](https://github.com/github/github-services/blob/master/services/web.rb) listens for all events. Other services like the [IRC Service](https://github.com/github/github-services/blob/master/services/irc.rb) may only listen for `push`, `issues`, and `pull_request` events.
3434

3535
## List
3636

content/v3/users.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ name
3838
: _Optional_ **string**
3939

4040
email
41-
: _Optional_ **string** - Publically visible email address.
41+
: _Optional_ **string** - Publicly visible email address.
4242

4343
blog
4444
: _Optional_ **string**

content/v3/users/emails.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ title: User Emails | GitHub API
44

55
# User Emails API
66

7-
Mangement of email addresses via the API requires that you are
7+
Management of email addresses via the API requires that you are
88
authenticated.
99

1010
## List email addresses for a user

0 commit comments

Comments
 (0)