diff --git a/Octokit.Reactive/Clients/IObservableCommitCommentReactionsClient.cs b/Octokit.Reactive/Clients/IObservableCommitCommentReactionsClient.cs index 751f76c5..5d837b70 100644 --- a/Octokit.Reactive/Clients/IObservableCommitCommentReactionsClient.cs +++ b/Octokit.Reactive/Clients/IObservableCommitCommentReactionsClient.cs @@ -18,7 +18,7 @@ namespace Octokit.Reactive /// The name of the repository /// The comment id /// The reaction to create - /// An of representing created reaction for specified comment id. + /// IObservable Create(string owner, string name, int number, NewReaction reaction); /// @@ -28,7 +28,7 @@ namespace Octokit.Reactive /// The ID of the repository /// The comment id /// The reaction to create - /// An of representing created reaction for specified comment id. + /// IObservable Create(int repositoryId, int number, NewReaction reaction); /// @@ -38,7 +38,7 @@ namespace Octokit.Reactive /// The owner of the repository /// The name of the repository /// The comment id - /// An of s representing all reactions for specified comment id. + /// IObservable GetAll(string owner, string name, int number); /// @@ -47,7 +47,7 @@ namespace Octokit.Reactive /// https://developer.github.com/v3/reactions/#list-reactions-for-a-commit-comment /// The owner of the repository /// The comment id - /// An of s representing all reactions for specified comment id. + /// IObservable GetAll(int repositoryId, int number); } } diff --git a/Octokit.Reactive/Clients/ObservableCommitCommentReactionsClient.cs b/Octokit.Reactive/Clients/ObservableCommitCommentReactionsClient.cs index 6f2eb723..7b138355 100644 --- a/Octokit.Reactive/Clients/ObservableCommitCommentReactionsClient.cs +++ b/Octokit.Reactive/Clients/ObservableCommitCommentReactionsClient.cs @@ -31,7 +31,7 @@ namespace Octokit.Reactive /// The name of the repository /// The comment id /// The reaction to create - /// An of representing created reaction for specified comment id. + /// public IObservable Create(string owner, string name, int number, NewReaction reaction) { Ensure.ArgumentNotNullOrEmptyString(owner, "owner"); @@ -48,7 +48,7 @@ namespace Octokit.Reactive /// The ID of the repository /// The comment id /// The reaction to create - /// An of representing created reaction for specified comment id. + /// public IObservable Create(int repositoryId, int number, NewReaction reaction) { Ensure.ArgumentNotNull(reaction, "reaction"); @@ -63,7 +63,7 @@ namespace Octokit.Reactive /// The owner of the repository /// The name of the repository /// The comment id - /// An of s representing all reactions for specified comment id. + /// public IObservable GetAll(string owner, string name, int number) { Ensure.ArgumentNotNullOrEmptyString(owner, "owner"); @@ -78,7 +78,7 @@ namespace Octokit.Reactive /// https://developer.github.com/v3/reactions/#list-reactions-for-a-commit-comment /// The owner of the repository /// The comment id - /// An of s representing all reactions for specified comment id. + /// public IObservable GetAll(int repositoryId, int number) { return _connection.GetAndFlattenAllPages(ApiUrls.CommitCommentReactions(repositoryId, number), null, AcceptHeaders.ReactionsPreview); diff --git a/Octokit/Clients/CommitCommentReactionsClient.cs b/Octokit/Clients/CommitCommentReactionsClient.cs index 2b26250d..34ff4edc 100644 --- a/Octokit/Clients/CommitCommentReactionsClient.cs +++ b/Octokit/Clients/CommitCommentReactionsClient.cs @@ -24,7 +24,7 @@ namespace Octokit /// The name of the repository /// The comment id /// The reaction to create - /// A representing created reaction for specified comment id. + /// public Task Create(string owner, string name, int number, NewReaction reaction) { Ensure.ArgumentNotNullOrEmptyString(owner, "owner"); @@ -41,7 +41,7 @@ namespace Octokit /// The owner of the repository /// The comment id /// The reaction to create - /// A representing created reaction for specified comment id. + /// public Task Create(int repositoryId, int number, NewReaction reaction) { Ensure.ArgumentNotNull(reaction, "reaction"); @@ -56,7 +56,7 @@ namespace Octokit /// The owner of the repository /// The name of the repository /// The comment id - /// A of s representing all reactions for specified comment id. + /// public Task> GetAll(string owner, string name, int number) { Ensure.ArgumentNotNullOrEmptyString(owner, "owner"); @@ -71,7 +71,7 @@ namespace Octokit /// https://developer.github.com/v3/reactions/#list-reactions-for-a-commit-comment /// The owner of the repository /// The comment id - /// A of s representing all reactions for specified comment id. + /// public Task> GetAll(int repositoryId, int number) { return ApiConnection.GetAll(ApiUrls.CommitCommentReactions(repositoryId, number), AcceptHeaders.ReactionsPreview); diff --git a/Octokit/Clients/ICommitCommentReactionsClient.cs b/Octokit/Clients/ICommitCommentReactionsClient.cs index f5c64833..241d4cce 100644 --- a/Octokit/Clients/ICommitCommentReactionsClient.cs +++ b/Octokit/Clients/ICommitCommentReactionsClient.cs @@ -19,7 +19,7 @@ namespace Octokit /// The name of the repository /// The comment id /// The reaction to create - /// A representing created reaction for specified comment id. + /// Task Create(string owner, string name, int number, NewReaction reaction); /// @@ -29,7 +29,7 @@ namespace Octokit /// The owner of the repository /// The comment id /// The reaction to create - /// A representing created reaction for specified comment id. + /// Task Create(int repositoryId, int number, NewReaction reaction); /// @@ -39,7 +39,7 @@ namespace Octokit /// The owner of the repository /// The name of the repository /// The comment id - /// A of s representing all reactions for specified comment id. + /// Task> GetAll(string owner, string name, int number); /// @@ -48,7 +48,7 @@ namespace Octokit /// https://developer.github.com/v3/reactions/#list-reactions-for-a-commit-comment /// The owner of the repository /// The comment id - /// A of s representing all reactions for specified comment id. + /// Task> GetAll(int repositoryId, int number); } }