mirror of
https://github.com/status-im/PyGithub.git
synced 2026-09-02 03:41:08 +00:00
Fix our doc to match URLs described in Github API v3 ref doc
This commit is contained in:
@@ -133,7 +133,7 @@ class PullRequestComment(github.GithubObject.CompletableGithubObject):
|
||||
|
||||
def delete(self):
|
||||
"""
|
||||
:calls: `DELETE /repos/:user/:repo/pulls/comments/:number <http://developer.github.com/v3/todo>`_
|
||||
:calls: `DELETE /repos/:owner/:repo/pulls/comments/:number <http://developer.github.com/v3/todo>`_
|
||||
:rtype: None
|
||||
"""
|
||||
headers, data = self._requester.requestJsonAndCheck(
|
||||
@@ -145,7 +145,7 @@ class PullRequestComment(github.GithubObject.CompletableGithubObject):
|
||||
|
||||
def edit(self, body):
|
||||
"""
|
||||
:calls: `PATCH /repos/:user/:repo/pulls/comments/:number <http://developer.github.com/v3/todo>`_
|
||||
:calls: `PATCH /repos/:owner/:repo/pulls/comments/:number <http://developer.github.com/v3/todo>`_
|
||||
:param body: string
|
||||
:rtype: None
|
||||
"""
|
||||
|
||||
Reference in New Issue
Block a user