@@ -77,7 +77,7 @@ public IObservable<PullRequestReviewComment> CreatePullRequestReviewComment(
7777 Guard . ArgumentNotEmptyString ( path , nameof ( path ) ) ;
7878
7979 var comment = new PullRequestReviewCommentCreate ( body , commitId , path , position ) ;
80- return gitHubClient . PullRequest . Comment . Create ( owner , name , number , comment ) ;
80+ return gitHubClient . PullRequest . ReviewComment . Create ( owner , name , number , comment ) ;
8181 }
8282
8383 public IObservable < PullRequestReviewComment > CreatePullRequestReviewComment (
@@ -88,7 +88,7 @@ public IObservable<PullRequestReviewComment> CreatePullRequestReviewComment(
8888 int inReplyTo )
8989 {
9090 var comment = new PullRequestReviewCommentReplyCreate ( body , inReplyTo ) ;
91- return gitHubClient . PullRequest . Comment . CreateReply ( owner , name , number , comment ) ;
91+ return gitHubClient . PullRequest . ReviewComment . CreateReply ( owner , name , number , comment ) ;
9292 }
9393
9494 public IObservable < Gist > CreateGist ( NewGist newGist )
@@ -303,7 +303,7 @@ public IObservable<PullRequestReviewComment> GetPullRequestReviewComments(string
303303 Guard . ArgumentNotEmptyString ( owner , nameof ( owner ) ) ;
304304 Guard . ArgumentNotEmptyString ( name , nameof ( name ) ) ;
305305
306- return gitHubClient . PullRequest . Comment . GetAll ( owner , name , number ) ;
306+ return gitHubClient . PullRequest . ReviewComment . GetAll ( owner , name , number ) ;
307307 }
308308
309309 public IObservable < PullRequest > GetPullRequestsForRepository ( string owner , string name )
0 commit comments