Update clients

This commit is contained in:
Henrik Andersson
2015-03-24 00:11:52 +10:00
parent b0ab485ed1
commit 78e76be7d9
34 changed files with 72 additions and 72 deletions
+3 -3
View File
@@ -16,7 +16,7 @@ namespace Octokit
/// <param name="repo">The name of the repository</param>
/// <param name="number">The number of the issue</param>
/// <returns>The list of labels</returns>
Task<IReadOnlyList<Label>> GetForIssue(string owner, string repo, int number);
Task<IReadOnlyList<Label>> GetAllForIssue(string owner, string repo, int number);
/// <summary>
/// Gets all labels for the repository.
@@ -27,7 +27,7 @@ namespace Octokit
/// <param name="owner">The owner of the repository</param>
/// <param name="repo">The name of the repository</param>
/// <returns>The list of labels</returns>
Task<IReadOnlyList<Label>> GetForRepository(string owner, string repo);
Task<IReadOnlyList<Label>> GetAllForRepository(string owner, string repo);
/// <summary>
/// Gets a single Label by name.
@@ -141,6 +141,6 @@ namespace Octokit
/// <param name="repo">The name of the repository</param>
/// <param name="number">The number of the milestone</param>
/// <returns></returns>
Task<IReadOnlyList<Label>> GetForMilestone(string owner, string repo, int number);
Task<IReadOnlyList<Label>> GetAllForMilestone(string owner, string repo, int number);
}
}