From b27d5b5da2db54fbd7183d907e4c03560ddf3896 Mon Sep 17 00:00:00 2001 From: Alexander Efremov Date: Fri, 17 Jun 2016 06:13:31 +0700 Subject: [PATCH] cleared tags --- .../Clients/IObservableIssueCommentReactionsClient.cs | 8 ++++---- .../Clients/ObservableIssueCommentReactionsClient.cs | 8 ++++---- Octokit/Clients/IIssueCommentReactionsClient.cs | 8 ++++---- Octokit/Clients/IssueCommentReactionsClient.cs | 8 ++++---- 4 files changed, 16 insertions(+), 16 deletions(-) diff --git a/Octokit.Reactive/Clients/IObservableIssueCommentReactionsClient.cs b/Octokit.Reactive/Clients/IObservableIssueCommentReactionsClient.cs index 3c6349e5..220a4da4 100644 --- a/Octokit.Reactive/Clients/IObservableIssueCommentReactionsClient.cs +++ b/Octokit.Reactive/Clients/IObservableIssueCommentReactionsClient.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 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-an-issue-comment /// The ID of the repository /// The comment id - /// An of s representing reactions for specified comment id. + /// IObservable GetAll(int repositoryId, int number); } } diff --git a/Octokit.Reactive/Clients/ObservableIssueCommentReactionsClient.cs b/Octokit.Reactive/Clients/ObservableIssueCommentReactionsClient.cs index 396a447c..d986fda1 100644 --- a/Octokit.Reactive/Clients/ObservableIssueCommentReactionsClient.cs +++ b/Octokit.Reactive/Clients/ObservableIssueCommentReactionsClient.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 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-an-issue-comment /// The ID of the repository /// The comment id - /// An of s representing reactions for specified comment id. + /// public IObservable GetAll(int repositoryId, int number) { return _connection.GetAndFlattenAllPages(ApiUrls.IssueCommentReactions(repositoryId, number), null, AcceptHeaders.ReactionsPreview); diff --git a/Octokit/Clients/IIssueCommentReactionsClient.cs b/Octokit/Clients/IIssueCommentReactionsClient.cs index a3fcb279..257cafcf 100644 --- a/Octokit/Clients/IIssueCommentReactionsClient.cs +++ b/Octokit/Clients/IIssueCommentReactionsClient.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 ID 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 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-an-issue-comment /// The ID of the repository /// The comment id - /// A of s representing reactions for specified comment id. + /// Task> GetAll(int repositoryId, int number); } } diff --git a/Octokit/Clients/IssueCommentReactionsClient.cs b/Octokit/Clients/IssueCommentReactionsClient.cs index 6297c0ac..39df13c0 100644 --- a/Octokit/Clients/IssueCommentReactionsClient.cs +++ b/Octokit/Clients/IssueCommentReactionsClient.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 ID 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 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-an-issue-comment /// The ID of the repository /// The comment id - /// A of s representing reactions for specified comment id. + /// public Task> GetAll(int repositoryId, int number) { return ApiConnection.GetAll(ApiUrls.IssueCommentReactions(repositoryId, number), AcceptHeaders.ReactionsPreview);