mirror of
https://github.com/zoriya/octokit.net.git
synced 2026-06-05 11:40:42 +00:00
renamed parameter
This commit is contained in:
@@ -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);
|
||||
}
|
||||
}
|
||||
@@ -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();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user