moved Statistics under Repository as per the docs

This commit is contained in:
Brendan Forster
2014-02-18 21:54:35 +11:00
parent 5ff3987d05
commit 4da060b1e2
7 changed files with 25 additions and 11 deletions

View File

@@ -19,7 +19,7 @@ namespace Octokit.Reactive
Ensure.ArgumentNotNullOrEmptyString(owner, "owner");
Ensure.ArgumentNotNullOrEmptyString(repositoryName, "repositoryName");
return _client.Statistics.GetContributors(owner, repositoryName).ToObservable();
return _client.Repository.Statistics.GetContributors(owner, repositoryName).ToObservable();
}
}
}