Skip to content
This repository has been archived by the owner on Feb 1, 2023. It is now read-only.

Commit

Permalink
Fix documentation links in Repo API
Browse files Browse the repository at this point in the history
  • Loading branch information
rolfvandekrol committed Oct 13, 2010
1 parent ec079f1 commit 280d4d2
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions lib/api/phpGitHubApiRepo.php
Expand Up @@ -14,7 +14,7 @@ class phpGitHubApiRepo extends phpGitHubApiAbstract
{
/**
* Search repos by keyword
* http://develop.github.com/p/repos.html#searching_repositories
* http://develop.github.com/p/repo.html
*
* @param string $query the search query
* @param string $language takes the same values as the language drop down on http://github.com/search
Expand All @@ -33,7 +33,7 @@ public function search($query, $language = '', $startPage = 1)

/**
* Get extended information about a repository by its username and repo name
* http://develop.github.com/p/repos.html#show_repo_info
* http://develop.github.com/p/repo.html
*
* @param string $username the user who owns the repo
* @param string $repo the name of the repo
Expand All @@ -48,7 +48,7 @@ public function show($username, $repo)

/**
* Get the repositories of a user
* http://develop.github.com/p/repos.html#list_all_repositories
* http://develop.github.com/p/repo.html
*
* @param string $username the username
* @return array list of the user repos
Expand All @@ -62,7 +62,7 @@ public function getUserRepos($username)

/**
* Get the tags of a repository
* http://develop.github.com/p/repos.html#repository_refs
* http://develop.github.com/p/repo.html
*
* @param string $username the username
* @param string $repo the name of the repo
Expand All @@ -77,7 +77,7 @@ public function getRepoTags($username, $repo)

/**
* Get the contributors of a repository
* http://develop.github.com/p/repos.html
* http://develop.github.com/p/repo.html
*
* @param string $username the username
* @param string $repo the name of the repo
Expand All @@ -98,7 +98,7 @@ public function getRepoContributors($username, $repo, $includingNonGithubUsers =

/**
* Get the branches of a repository
* http://develop.github.com/p/repos.html#repository_refs
* http://develop.github.com/p/repo.html
*
* @param string $username the username
* @param string $repo the name of the repo
Expand Down

0 comments on commit 280d4d2

Please sign in to comment.