diff --git a/Octokit.Reactive/Clients/IObservablePullRequestReviewCommentReactionsClient.cs b/Octokit.Reactive/Clients/IObservablePullRequestReviewCommentReactionsClient.cs index f2db63c4..e9c58ab2 100644 --- a/Octokit.Reactive/Clients/IObservablePullRequestReviewCommentReactionsClient.cs +++ b/Octokit.Reactive/Clients/IObservablePullRequestReviewCommentReactionsClient.cs @@ -17,7 +17,7 @@ namespace Octokit.Reactive /// The owner of the repository /// The name of the repository /// The comment id - /// An representing s for a specified pull request review comment. + /// IObservable GetAll(string owner, string name, int number); /// @@ -26,7 +26,7 @@ namespace Octokit.Reactive /// https://developer.github.com/v3/reactions/#list-reactions-for-a-pull-request-review-comment /// The ID of the repository /// The comment id - /// An representing s for a specified pull request review comment. + /// IObservable GetAll(int repositoryId, int number); /// @@ -37,7 +37,7 @@ namespace Octokit.Reactive /// The name of the repository /// The comment id /// The reaction to create - /// An representing created for a specified pull request review comment. + /// IObservable Create(string owner, string name, int number, NewReaction reaction); /// @@ -47,7 +47,7 @@ namespace Octokit.Reactive /// The owner of the repository /// The comment id /// The reaction to create - /// An representing created for a specified pull request review comment. + /// IObservable Create(int repositoryId, int number, NewReaction reaction); } } diff --git a/Octokit.Reactive/Clients/ObservablePullRequestReviewCommentReactionsClient.cs b/Octokit.Reactive/Clients/ObservablePullRequestReviewCommentReactionsClient.cs index 5f15cf17..5dc1915b 100644 --- a/Octokit.Reactive/Clients/ObservablePullRequestReviewCommentReactionsClient.cs +++ b/Octokit.Reactive/Clients/ObservablePullRequestReviewCommentReactionsClient.cs @@ -30,7 +30,7 @@ namespace Octokit.Reactive /// The owner of the repository /// The name of the repository /// The comment id - /// An representing s for a specified pull request review comment. + /// public IObservable GetAll(string owner, string name, int number) { Ensure.ArgumentNotNullOrEmptyString(owner, "owner"); @@ -45,7 +45,7 @@ namespace Octokit.Reactive /// https://developer.github.com/v3/reactions/#list-reactions-for-a-pull-request-review-comment /// The ID of the repository /// The comment id - /// An representing s for a specified pull request review comment. + /// public IObservable GetAll(int repositoryId, int number) { return _connection.GetAndFlattenAllPages(ApiUrls.PullRequestReviewCommentReaction(repositoryId, number), null, AcceptHeaders.ReactionsPreview); @@ -59,7 +59,7 @@ namespace Octokit.Reactive /// The name of the repository /// The comment id /// The reaction to create - /// An representing created for a specified pull request review comment. + /// public IObservable Create(string owner, string name, int number, NewReaction reaction) { Ensure.ArgumentNotNullOrEmptyString(owner, "owner"); @@ -76,7 +76,7 @@ namespace Octokit.Reactive /// The owner of the repository /// The comment id /// The reaction to create - /// An representing created for a specified pull request review comment. + /// public IObservable Create(int repositoryId, int number, NewReaction reaction) { Ensure.ArgumentNotNull(reaction, "reaction"); diff --git a/Octokit/Clients/IPullRequestReviewCommentReactionsClient.cs b/Octokit/Clients/IPullRequestReviewCommentReactionsClient.cs index 215a4948..236dfb75 100644 --- a/Octokit/Clients/IPullRequestReviewCommentReactionsClient.cs +++ b/Octokit/Clients/IPullRequestReviewCommentReactionsClient.cs @@ -18,7 +18,7 @@ namespace Octokit /// The owner of the repository /// The name of the repository /// The comment id - /// A of representing s for a specified pull request review comment. + /// Task> GetAll(string owner, string name, int number); /// @@ -27,7 +27,7 @@ namespace Octokit /// https://developer.github.com/v3/reactions/#list-reactions-for-a-pull-request-review-comment /// The ID of the repository /// The comment id - /// A of representing s for a specified pull request review comment. + /// Task> GetAll(int repositoryId, int number); /// @@ -38,7 +38,7 @@ namespace Octokit /// The name of the repository /// The comment id /// The reaction to create - /// A representing created for a specified pull request review comment. + /// Task Create(string owner, string name, int number, NewReaction reaction); /// @@ -48,7 +48,7 @@ namespace Octokit /// The ID of the repository /// The comment id /// The reaction to create - /// A representing created for a specified pull request review comment. + /// Task Create(int repositoryId, int number, NewReaction reaction); } } diff --git a/Octokit/Clients/PullRequestReviewCommentReactionsClient.cs b/Octokit/Clients/PullRequestReviewCommentReactionsClient.cs index 7c613dcd..02cac77d 100644 --- a/Octokit/Clients/PullRequestReviewCommentReactionsClient.cs +++ b/Octokit/Clients/PullRequestReviewCommentReactionsClient.cs @@ -23,7 +23,7 @@ namespace Octokit /// The owner of the repository /// The name of the repository /// The comment id - /// A of representing s for a specified pull request review comment. + /// public Task> GetAll(string owner, string name, int number) { Ensure.ArgumentNotNullOrEmptyString(owner, "owner"); @@ -38,7 +38,7 @@ namespace Octokit /// https://developer.github.com/v3/reactions/#list-reactions-for-a-pull-request-review-comment /// The ID of the repository /// The comment id - /// A of representing s for a specified pull request review comment. + /// public Task> GetAll(int repositoryId, int number) { return ApiConnection.GetAll(ApiUrls.PullRequestReviewCommentReaction(repositoryId, number), AcceptHeaders.ReactionsPreview); @@ -52,7 +52,7 @@ namespace Octokit /// The name of the repository /// The comment id /// The reaction to create - /// A representing created for a specified pull request review comment. + /// public Task Create(string owner, string name, int number, NewReaction reaction) { Ensure.ArgumentNotNullOrEmptyString(owner, "owner"); @@ -69,7 +69,7 @@ namespace Octokit /// The ID of the repository /// The comment id /// The reaction to create - /// A representing created for a specified pull request review comment. + /// public Task Create(int repositoryId, int number, NewReaction reaction) { Ensure.ArgumentNotNull(reaction, "reaction");