IRepositoriesClient.RepositoryComments -> IRepositoriesClient.Comment

Fixes #1031
This commit is contained in:
Mordechai Zuber
2015-12-23 19:00:48 +02:00
parent 2ede6e2b26
commit 18fd10c53f
6 changed files with 44 additions and 2 deletions

View File

@@ -14,7 +14,7 @@ namespace Octokit.Reactive
{
Ensure.ArgumentNotNull(client, "client");
_client = client.Repository.RepositoryComments;
_client = client.Repository.Comment;
_connection = client.Connection;
}