Skip to content

Commit 927bb99

Browse files
authored
Whitespace fixes. (#205)
[ci skip]
1 parent 35de1cc commit 927bb99

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -185,8 +185,8 @@ GitHub.jl implements a bunch of methods that make REST requests to GitHub's API.
185185
|------------------------------------------|--------------------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------|
186186
| `labels(repo,issue)` | `Vector{Label}` | [list labels from `issue`](https://docs.github.com/en/rest/reference/issues#list-labels-for-an-issue) |
187187
| `add_labels(repo, issue, labels)` | `Vector{Label}` | [add labels to an `issue`](https://docs.github.com/en/rest/reference/issues#add-labels-to-an-issue) |
188-
| `set_labels(repo, issue, labels)` | `Vector{Label}` | [set the labels for an `issue`](https://docs.github.com/en/rest/reference/issues#set-labels-for-an-issue)
189-
| `remove_all_labels(repo, issue)` | `HTTP.Response` | [remove all labels from an `issue`](https://docs.github.com/en/rest/reference/issues#remove-all-labels-from-an-issue)
188+
| `set_labels(repo, issue, labels)` | `Vector{Label}` | [set the labels for an `issue`](https://docs.github.com/en/rest/reference/issues#set-labels-for-an-issue)
189+
| `remove_all_labels(repo, issue)` | `HTTP.Response` | [remove all labels from an `issue`](https://docs.github.com/en/rest/reference/issues#remove-all-labels-from-an-issue)
190190
| `remove_label(repo, issue, label)` | `HTTP.Response` | [remove a label from an `issue`](https://docs.github.com/en/rest/reference/issues#remove-a-label-from-an-issue)
191191

192192
#### Social Activity

src/GitHub.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ include("licenses/license.jl")
9191
# export -------
9292

9393
export # license.jl
94-
License,
94+
License,
9595
licenses,
9696
license,
9797
repo_license
@@ -372,4 +372,4 @@ export
372372
invitations,
373373
Invite
374374

375-
end # module GitHub
375+
end # module GitHub

src/orgs/orgs.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,4 +17,4 @@ end
1717
@api_default function invitations(api::GitHubAPI, org::String, params=Dict{String,Any}(); options...)
1818
results, page_data = gh_post_json(api, "/orgs/$(org)/invitations"; params=params, options...)
1919
return map(Invite, results), page_data
20-
end
20+
end

src/repositories/commits.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,4 +50,4 @@ end
5050
@api_default function commits(api::GitHubAPI, repo, pr; options...)
5151
results, page_data = gh_get_paged_json(api, "/repos/$(name(repo))/pulls/$(name(pr))/commits"; options...)
5252
return map(Commit, results), page_data
53-
end
53+
end

0 commit comments

Comments
 (0)