mirror of
https://github.com/zoriya/octokit.net.git
synced 2026-06-05 11:40:42 +00:00
IRepositoriesClient and RepositoriesClient fixes.
This commit is contained in:
@@ -73,7 +73,7 @@ namespace Octokit
|
||||
/// <remarks>
|
||||
/// See the <a href="http://developer.github.com/v3/repos/#create">API documentation</a> for more information.
|
||||
/// </remarks>
|
||||
/// <param name="organizationLogin">Login of the organization in which to create the repostiory</param>
|
||||
/// <param name="organizationLogin">Login of the organization in which to create the repository</param>
|
||||
/// <param name="newRepository">A <see cref="NewRepository"/> instance describing the new repository to create</param>
|
||||
/// <exception cref="ApiException">Thrown when a general API error occurs.</exception>
|
||||
/// <returns>A <see cref="Repository"/> instance for the created repository</returns>
|
||||
@@ -351,7 +351,7 @@ namespace Octokit
|
||||
/// </remarks>
|
||||
/// <param name="owner">The owner of the repository</param>
|
||||
/// <param name="name">The name of the repository</param>
|
||||
/// <returns>All of the repositorys tags.</returns>
|
||||
/// <returns>All of the repositories tags.</returns>
|
||||
Task<IReadOnlyList<RepositoryTag>> GetAllTags(string owner, string name);
|
||||
|
||||
/// <summary>
|
||||
|
||||
@@ -69,7 +69,7 @@ namespace Octokit
|
||||
/// <remarks>
|
||||
/// See the <a href="http://developer.github.com/v3/repos/#create">API documentation</a> for more information.
|
||||
/// </remarks>
|
||||
/// <param name="organizationLogin">Login of the organization in which to create the repostiory</param>
|
||||
/// <param name="organizationLogin">Login of the organization in which to create the repository</param>
|
||||
/// <param name="newRepository">A <see cref="NewRepository"/> instance describing the new repository to create</param>
|
||||
/// <exception cref="ApiException">Thrown when a general API error occurs.</exception>
|
||||
/// <returns>A <see cref="Repository"/> instance for the created repository</returns>
|
||||
@@ -551,7 +551,7 @@ namespace Octokit
|
||||
/// </remarks>
|
||||
/// <param name="owner">The owner of the repository</param>
|
||||
/// <param name="name">The name of the repository</param>
|
||||
/// <returns>All of the repositorys tags.</returns>
|
||||
/// <returns>All of the repositories tags.</returns>
|
||||
public Task<IReadOnlyList<RepositoryTag>> GetAllTags(string owner, string name)
|
||||
{
|
||||
Ensure.ArgumentNotNullOrEmptyString(owner, "owner");
|
||||
|
||||
Reference in New Issue
Block a user