renamed parameter

This commit is contained in:
Amy Palamountain
2014-01-11 10:09:29 +13:00
parent af4c82ad3d
commit 98afca599f
2 changed files with 5 additions and 5 deletions
+3 -3
View File
@@ -6,11 +6,11 @@ namespace Octokit
public interface IStatisticsClient
{
/// <summary>
/// Returns a list of <see cref="Contributor"/> for the given repo
/// Returns a list of <see cref="Contributor"/> for the given repository
/// </summary>
/// <param name="owner">The owner of the repository</param>
/// <param name="repoName">The name of the repository</param>
/// <param name="repositoryName">The name of the repository</param>
/// <returns>A list of <see cref="Contributor"/></returns>
Task<IEnumerable<Contributor>> Contributors(string owner, string repoName);
Task<IEnumerable<Contributor>> Contributors(string owner, string repositoryName);
}
}
+2 -2
View File
@@ -18,9 +18,9 @@ namespace Octokit
/// Returns a list of <see cref="Contributor"/> for the given repo
/// </summary>
/// <param name="owner">The owner of the repository</param>
/// <param name="repoName">The name of the repository</param>
/// <param name="repositoryName">The name of the repository</param>
/// <returns>A list of <see cref="Contributor"/></returns>
public Task<IEnumerable<Contributor>> Contributors(string owner, string repoName)
public Task<IEnumerable<Contributor>> Contributors(string owner, string repositoryName)
{
throw new NotImplementedException();
}