From 6e7e30e3fddc5e5cec02097156b6c705ef3bcf21 Mon Sep 17 00:00:00 2001 From: "aedampir@gmail.com" Date: Wed, 15 Jun 2016 18:30:06 +0700 Subject: [PATCH] modified XML docs --- .../IObservablePullRequestReviewCommentReactionsClient.cs | 4 ++-- .../ObservablePullRequestReviewCommentReactionsClient.cs | 4 ++-- Octokit/Clients/IPullRequestReviewCommentReactionsClient.cs | 4 ++-- Octokit/Clients/PullRequestReviewCommentReactionsClient.cs | 4 ++-- 4 files changed, 8 insertions(+), 8 deletions(-) diff --git a/Octokit.Reactive/Clients/IObservablePullRequestReviewCommentReactionsClient.cs b/Octokit.Reactive/Clients/IObservablePullRequestReviewCommentReactionsClient.cs index a23352ec..bc9e9fb0 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); /// @@ -28,7 +28,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); } } diff --git a/Octokit.Reactive/Clients/ObservablePullRequestReviewCommentReactionsClient.cs b/Octokit.Reactive/Clients/ObservablePullRequestReviewCommentReactionsClient.cs index ee528141..334e22d8 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"); @@ -47,7 +47,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"); diff --git a/Octokit/Clients/IPullRequestReviewCommentReactionsClient.cs b/Octokit/Clients/IPullRequestReviewCommentReactionsClient.cs index dc1f6540..4d0c3fac 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); /// @@ -29,7 +29,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); } } diff --git a/Octokit/Clients/PullRequestReviewCommentReactionsClient.cs b/Octokit/Clients/PullRequestReviewCommentReactionsClient.cs index 9da47f71..21d63f8c 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"); @@ -40,7 +40,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");