From 98afca599f1108b32c00297361f8bd4f2eda0c33 Mon Sep 17 00:00:00 2001 From: Amy Palamountain Date: Sat, 11 Jan 2014 10:09:29 +1300 Subject: [PATCH] renamed parameter --- Octokit/Clients/IStatisticsClient.cs | 6 +++--- Octokit/Clients/StatisticsClient.cs | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Octokit/Clients/IStatisticsClient.cs b/Octokit/Clients/IStatisticsClient.cs index 4bd61ad6..6e937d80 100644 --- a/Octokit/Clients/IStatisticsClient.cs +++ b/Octokit/Clients/IStatisticsClient.cs @@ -6,11 +6,11 @@ namespace Octokit public interface IStatisticsClient { /// - /// Returns a list of for the given repo + /// Returns a list of for the given repository /// /// The owner of the repository - /// The name of the repository + /// The name of the repository /// A list of - Task> Contributors(string owner, string repoName); + Task> Contributors(string owner, string repositoryName); } } \ No newline at end of file diff --git a/Octokit/Clients/StatisticsClient.cs b/Octokit/Clients/StatisticsClient.cs index fba2c49c..382864ae 100644 --- a/Octokit/Clients/StatisticsClient.cs +++ b/Octokit/Clients/StatisticsClient.cs @@ -18,9 +18,9 @@ namespace Octokit /// Returns a list of for the given repo /// /// The owner of the repository - /// The name of the repository + /// The name of the repository /// A list of - public Task> Contributors(string owner, string repoName) + public Task> Contributors(string owner, string repositoryName) { throw new NotImplementedException(); }