From 350a47090a94671f1297fd732dbf1d11247d8ff7 Mon Sep 17 00:00:00 2001 From: "aedampir@gmail.com" Date: Wed, 15 Jun 2016 15:35:09 +0700 Subject: [PATCH] modified XML docs --- .../Clients/IObservableCommitCommentReactionsClient.cs | 10 ++++++++-- .../Clients/ObservableCommitCommentReactionsClient.cs | 10 ++++++++-- Octokit/Clients/CommitCommentReactionsClient.cs | 10 ++++++++-- Octokit/Clients/ICommitCommentReactionsClient.cs | 10 ++++++++-- 4 files changed, 32 insertions(+), 8 deletions(-) diff --git a/Octokit.Reactive/Clients/IObservableCommitCommentReactionsClient.cs b/Octokit.Reactive/Clients/IObservableCommitCommentReactionsClient.cs index 174863fa..0557a16b 100644 --- a/Octokit.Reactive/Clients/IObservableCommitCommentReactionsClient.cs +++ b/Octokit.Reactive/Clients/IObservableCommitCommentReactionsClient.cs @@ -2,6 +2,12 @@ namespace Octokit.Reactive { + /// + /// A client for GitHub's Reactions API. + /// + /// + /// See the Reactions API documentation for more information. + /// public interface IObservableCommitCommentReactionsClient { /// @@ -12,7 +18,7 @@ namespace Octokit.Reactive /// The name of the repository /// The comment id /// The reaction to create - /// + /// A of representing created reaction for specified comment id. IObservable Create(string owner, string name, int number, NewReaction reaction); /// @@ -22,7 +28,7 @@ namespace Octokit.Reactive /// The owner of the repository /// The name of the repository /// The comment id - /// + /// A of s representing all reactions for specified comment id. IObservable GetAll(string owner, string name, int number); } } diff --git a/Octokit.Reactive/Clients/ObservableCommitCommentReactionsClient.cs b/Octokit.Reactive/Clients/ObservableCommitCommentReactionsClient.cs index e3d172ee..017960b3 100644 --- a/Octokit.Reactive/Clients/ObservableCommitCommentReactionsClient.cs +++ b/Octokit.Reactive/Clients/ObservableCommitCommentReactionsClient.cs @@ -4,6 +4,12 @@ using Octokit.Reactive.Internal; namespace Octokit.Reactive { + /// + /// A client for GitHub's Reactions API. + /// + /// + /// See the Reactions API documentation for more information. + /// public class ObservableCommitCommentReactionsClient : IObservableCommitCommentReactionsClient { readonly ICommitCommentReactionsClient _client; @@ -25,7 +31,7 @@ namespace Octokit.Reactive /// The name of the repository /// The comment id /// The reaction to create - /// + /// A of representing created reaction for specified comment id. public IObservable Create(string owner, string name, int number, NewReaction reaction) { Ensure.ArgumentNotNullOrEmptyString(owner, "owner"); @@ -42,7 +48,7 @@ namespace Octokit.Reactive /// The owner of the repository /// The name of the repository /// The comment id - /// + /// A of s representing all reactions for specified comment id. public IObservable GetAll(string owner, string name, int number) { Ensure.ArgumentNotNullOrEmptyString(owner, "owner"); diff --git a/Octokit/Clients/CommitCommentReactionsClient.cs b/Octokit/Clients/CommitCommentReactionsClient.cs index 000cddb5..3dca0f50 100644 --- a/Octokit/Clients/CommitCommentReactionsClient.cs +++ b/Octokit/Clients/CommitCommentReactionsClient.cs @@ -3,6 +3,12 @@ using System.Threading.Tasks; namespace Octokit { + /// + /// A client for GitHub's Reactions API. + /// + /// + /// See the Reactions API documentation for more information. + /// public class CommitCommentReactionsClient : ApiClient, ICommitCommentReactionsClient { public CommitCommentReactionsClient(IApiConnection apiConnection) @@ -18,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"); @@ -35,7 +41,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"); diff --git a/Octokit/Clients/ICommitCommentReactionsClient.cs b/Octokit/Clients/ICommitCommentReactionsClient.cs index 7e1c73bf..5bc0a0fa 100644 --- a/Octokit/Clients/ICommitCommentReactionsClient.cs +++ b/Octokit/Clients/ICommitCommentReactionsClient.cs @@ -3,6 +3,12 @@ using System.Threading.Tasks; namespace Octokit { + /// + /// A client for GitHub's Reactions API. + /// + /// + /// See the Reactions API documentation for more information. + /// public interface ICommitCommentReactionsClient { /// @@ -13,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); /// @@ -23,7 +29,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); } }