From 161097b23ccac52b89c5eb0e994324f32eb9cbd3 Mon Sep 17 00:00:00 2001 From: Srijan Choudhary Date: Sun, 19 May 2013 02:33:32 +0530 Subject: [PATCH] Updates api reference url in docstrings for repository keys --- github/RepositoryKey.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/github/RepositoryKey.py b/github/RepositoryKey.py index 8b172a215e..94c42e7442 100644 --- a/github/RepositoryKey.py +++ b/github/RepositoryKey.py @@ -19,7 +19,7 @@ class RepositoryKey(github.GithubObject.CompletableGithubObject): """ - This class represents RepositoryKeys as returned for example by http://developer.github.com/v3/todo + This class represents RepositoryKeys as returned for example by http://developer.github.com/v3/keys """ def __init__(self, requester, attributes, completed, repoUrl): @@ -72,7 +72,7 @@ def verified(self): def delete(self): """ - :calls: `DELETE /repos/:user/:repo/keys/:id `_ + :calls: `DELETE /repos/:user/:repo/keys/:id `_ :rtype: None """ headers, data = self._requester.requestJsonAndCheck( @@ -84,7 +84,7 @@ def delete(self): def edit(self, title=github.GithubObject.NotSet, key=github.GithubObject.NotSet): """ - :calls: `PATCH /repos/:user/:repo/keys/:id `_ + :calls: `PATCH /repos/:user/:repo/keys/:id `_ :param title: string :param key: string :rtype: None