Skip to content

Commit 582a57d

Browse files
committed
lint
1 parent 67e16f0 commit 582a57d

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/octokit/client/pull_requests.cr

+2-2
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ module Octokit
6969
# Octokit.close_pull_request("crystal-lang/crystal", 123)
7070
# ```
7171
# def close_pull_request(repo : String, number : Int64, **options)
72-
# TODO
72+
# TODO
7373
# end
7474

7575
# Update a pull request branch
@@ -80,7 +80,7 @@ module Octokit
8080
# **Examples:**
8181
# ```
8282
# Octokit.update_pull_request_branch("crystal-lang/crystal", 123)
83-
# ```
83+
# ```
8484
def update_pull_request_branch(repo : String, number : Int64, **options) : Bool
8585
boolean_from_response(
8686
:put,

src/octokit/connection.cr

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ module Octokit
1717
CONVENIENCE_HEADERS = Set{"accept", "content_type"}
1818

1919
# Successful status codes from PUT/POST/PATCH requests
20-
SUCCESSFUL_STATUSES = [201, 202, 204]
20+
SUCCESSFUL_STATUSES = [201, 202, 204]
2121

2222
# Make a HTTP GET request
2323
def get(url, options = nil)

0 commit comments

Comments
 (0)