Fix our doc to match URLs described in Github API v3 ref doc

This commit is contained in:
Vincent Jacques
2013-07-16 10:32:57 +02:00
parent 84f3557f87
commit 8484260dc5
23 changed files with 239 additions and 230 deletions
+2 -2
View File
@@ -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
"""