Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Replace doc url #171

Merged
merged 18 commits into from Jun 13, 2013
2 changes: 1 addition & 1 deletion github/Branch.py
Expand Up @@ -21,7 +21,7 @@

class Branch(github.GithubObject.NonCompletableGithubObject):
"""
This class represents Branchs as returned for example by http://developer.github.com/v3/todo
This class represents Branchs. The reference can be found here http://developer.github.com/v3/repos/#list-branches
"""

@property
Expand Down
2 changes: 1 addition & 1 deletion github/Commit.py
Expand Up @@ -27,7 +27,7 @@

class Commit(github.GithubObject.CompletableGithubObject):
"""
This class represents Commits as returned for example by http://developer.github.com/v3/todo
This class represents Commits. The reference can be found here http://developer.github.com/v3/git/commits/
"""

@property
Expand Down
2 changes: 1 addition & 1 deletion github/Event.py
Expand Up @@ -23,7 +23,7 @@

class Event(github.GithubObject.NonCompletableGithubObject):
"""
This class represents Events as returned for example by http://developer.github.com/v3/todo
This class represents Events. The reference can be found here http://developer.github.com/v3/activity/events/
"""

@property
Expand Down
2 changes: 1 addition & 1 deletion github/Label.py
Expand Up @@ -21,7 +21,7 @@

class Label(github.GithubObject.CompletableGithubObject):
"""
This class represents Labels as returned for example by http://developer.github.com/v3/todo
This class represents Labels. The reference can be found here http://developer.github.com/v3/issues/labels/
"""

@property
Expand Down
2 changes: 1 addition & 1 deletion github/Milestone.py
Expand Up @@ -25,7 +25,7 @@

class Milestone(github.GithubObject.CompletableGithubObject):
"""
This class represents Milestones as returned for example by http://developer.github.com/v3/todo
This class represents Milestones. The reference can be found here http://developer.github.com/v3/issues/milestones/
"""

@property
Expand Down
2 changes: 1 addition & 1 deletion github/Notification.py
Expand Up @@ -21,7 +21,7 @@

class Notification(github.GithubObject.CompletableGithubObject):
"""
This class represents Notifications as returned for example by http://developer.github.com/v3/activity/notifications/#list-your-notifications
This class represents Notifications. The reference can be found here http://developer.github.com/v3/activity/notifications/
"""

@property
Expand Down
2 changes: 1 addition & 1 deletion github/Organization.py
Expand Up @@ -29,7 +29,7 @@

class Organization(github.GithubObject.CompletableGithubObject):
"""
This class represents Organizations as returned for example by http://developer.github.com/v3/todo
This class represents Organizations. The reference can be found here http://developer.github.com/v3/orgs/
"""

@property
Expand Down
2 changes: 1 addition & 1 deletion github/PullRequest.py
Expand Up @@ -29,7 +29,7 @@

class PullRequest(github.GithubObject.CompletableGithubObject):
"""
This class represents PullRequests as returned for example by http://developer.github.com/v3/todo
This class represents PullRequests. The reference can be found here http://developer.github.com/v3/pulls/
"""

@property
Expand Down
2 changes: 1 addition & 1 deletion github/PullRequestComment.py
Expand Up @@ -21,7 +21,7 @@

class PullRequestComment(github.GithubObject.CompletableGithubObject):
"""
This class represents PullRequestComments as returned for example by http://developer.github.com/v3/todo
This class represents PullRequestComments. The reference can be found here http://developer.github.com/v3/pulls/comments/
"""

@property
Expand Down
2 changes: 1 addition & 1 deletion github/PullRequestMergeStatus.py
Expand Up @@ -19,7 +19,7 @@

class PullRequestMergeStatus(github.GithubObject.NonCompletableGithubObject):
"""
This class represents PullRequestMergeStatuss as returned for example by http://developer.github.com/v3/todo
This class represents PullRequestMergeStatuss. The reference can be found here http://developer.github.com/v3/pulls/#get-if-a-pull-request-has-been-merged
"""

@property
Expand Down
2 changes: 1 addition & 1 deletion github/Repository.py
Expand Up @@ -52,7 +52,7 @@

class Repository(github.GithubObject.CompletableGithubObject):
"""
This class represents Repositorys as returned for example by http://developer.github.com/v3/todo
This class represents Repositorys. The reference can be found here http://developer.github.com/v3/repos/
"""

@property
Expand Down
2 changes: 1 addition & 1 deletion github/RepositoryKey.py
Expand Up @@ -19,7 +19,7 @@

class RepositoryKey(github.GithubObject.CompletableGithubObject):
"""
This class represents RepositoryKeys as returned for example by http://developer.github.com/v3/keys
This class represents RepositoryKeys. The reference can be found here http://developer.github.com/v3/repos/keys/
"""

def __init__(self, requester, attributes, completed, repoUrl):
Expand Down
2 changes: 1 addition & 1 deletion github/Tag.py
Expand Up @@ -21,7 +21,7 @@

class Tag(github.GithubObject.NonCompletableGithubObject):
"""
This class represents Tags as returned for example by http://developer.github.com/v3/todo
This class represents Tags. The reference can be found here http://developer.github.com/v3/git/tags/
"""

@property
Expand Down
2 changes: 1 addition & 1 deletion github/Team.py
Expand Up @@ -23,7 +23,7 @@

class Team(github.GithubObject.CompletableGithubObject):
"""
This class represents Teams as returned for example by http://developer.github.com/v3/todo
This class represents Teams. The reference can be found here http://developer.github.com/v3/orgs/teams/
"""

@property
Expand Down
2 changes: 1 addition & 1 deletion github/UserKey.py
Expand Up @@ -19,7 +19,7 @@

class UserKey(github.GithubObject.CompletableGithubObject):
"""
This class represents UserKeys as returned for example by http://developer.github.com/v3/todo
This class represents UserKeys. The reference can be found here http://developer.github.com/v3/users/keys/
"""

@property
Expand Down