File tree 2 files changed +3
-3
lines changed
2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -69,7 +69,7 @@ module Octokit
69
69
# Octokit.close_pull_request("crystal-lang/crystal", 123)
70
70
# ```
71
71
# def close_pull_request(repo : String, number : Int64, **options)
72
- # TODO
72
+ # TODO
73
73
# end
74
74
75
75
# Update a pull request branch
@@ -80,7 +80,7 @@ module Octokit
80
80
# **Examples:**
81
81
# ```
82
82
# Octokit.update_pull_request_branch("crystal-lang/crystal", 123)
83
- # ```
83
+ # ```
84
84
def update_pull_request_branch (repo : String , number : Int64 , ** options) : Bool
85
85
boolean_from_response(
86
86
:put ,
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ module Octokit
17
17
CONVENIENCE_HEADERS = Set {" accept" , " content_type" }
18
18
19
19
# Successful status codes from PUT/POST/PATCH requests
20
- SUCCESSFUL_STATUSES = [201 , 202 , 204 ]
20
+ SUCCESSFUL_STATUSES = [201 , 202 , 204 ]
21
21
22
22
# Make a HTTP GET request
23
23
def get (url, options = nil )
You can’t perform that action at this time.
0 commit comments