You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* All: Fixes typos
Scanned over whole repository and fixes some typos.
* All: Correction of typos in methods
Renaming methods can be dangerous for software that is already running
with older versions of the library. Therefore the renaming should be
done softly. Old methods are marked as deprecated and a fixed method is
created.
In the confluence script there was already a refactored function. So
this typo change was reverted.
In the bitbucket script a new function with correct method name is
introduced. The typo method was set to deprecated.
Copy file name to clipboardExpand all lines: atlassian/bitbucket/cloud/repositories/pullRequests.py
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -61,7 +61,7 @@ def create(
61
61
):
62
62
"""
63
63
Creates a new pull requests for a given source branch
64
-
Be careful, adding this mulitple times for the same source branch updates the pull request!
64
+
Be careful, adding this multiple times for the same source branch updates the pull request!
65
65
66
66
:param title: string: pull request title
67
67
:param source_branch: string: name of the source branch
@@ -259,7 +259,7 @@ def request_changes(self):
259
259
260
260
defunrequest_changes(self):
261
261
"""
262
-
Request changes for the pull request if open
262
+
Unrequest changes for the pull request if open
263
263
264
264
API docs: https://developer.atlassian.com/bitbucket/api/2/reference/resource/repositories/%7Bworkspace%7D/%7Brepo_slug%7D/pullrequests/%7Bpull_request_id%7D/request-changes#delete
0 commit comments