@@ -85,8 +85,8 @@ Task<byte[]> ExtractFileFromGit(
8585 /// <summary>
8686 /// Posts a new PR review comment.
8787 /// </summary>
88- /// <param name="repository ">The repository.</param>
89- /// <param name="repositoryOwner ">The owner of the repository fork to post to.</param>
88+ /// <param name="localRepository ">The local repository.</param>
89+ /// <param name="remoteRepositoryOwner ">The owner of the repository fork to post to.</param>
9090 /// <param name="user">The user posting the comment.</param>
9191 /// <param name="number">The pull request number.</param>
9292 /// <param name="body">The comment body.</param>
@@ -95,8 +95,8 @@ Task<byte[]> ExtractFileFromGit(
9595 /// <param name="position">The line index in the diff to comment on.</param>
9696 /// <returns>A model representing the posted comment.</returns>
9797 Task < IPullRequestReviewCommentModel > PostReviewComment (
98- ILocalRepositoryModel repository ,
99- string repositoryOwner ,
98+ ILocalRepositoryModel localRepository ,
99+ string remoteRepositoryOwner ,
100100 IAccount user ,
101101 int number ,
102102 string body ,
@@ -107,16 +107,16 @@ Task<IPullRequestReviewCommentModel> PostReviewComment(
107107 /// <summary>
108108 /// Posts a PR review comment reply.
109109 /// </summary>
110- /// <param name="repository ">The repository.</param>
111- /// <param name="repositoryOwner ">The owner of the repository fork to post to.</param>
110+ /// <param name="localRepository ">The local repository.</param>
111+ /// <param name="remoteRepositoryOwner ">The owner of the repository fork to post to.</param>
112112 /// <param name="user">The user posting the comment.</param>
113113 /// <param name="number">The pull request number.</param>
114114 /// <param name="body">The comment body.</param>
115115 /// <param name="inReplyTo">The comment ID to reply to.</param>
116116 /// <returns>A model representing the posted comment.</returns>
117117 Task < IPullRequestReviewCommentModel > PostReviewComment (
118- ILocalRepositoryModel repository ,
119- string repositoryOwner ,
118+ ILocalRepositoryModel localRepository ,
119+ string remoteRepositoryOwner ,
120120 IAccount user ,
121121 int number ,
122122 string body ,
0 commit comments