From b66aad0a83a47e90132777247019f558af9c8833 Mon Sep 17 00:00:00 2001 From: "aedampir@gmail.com" Date: Wed, 15 Jun 2016 16:41:13 +0700 Subject: [PATCH] modified XML docs --- .../Clients/IObservableCommitCommentReactionsClient.cs | 8 ++++---- .../Clients/ObservableCommitCommentReactionsClient.cs | 8 ++++---- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/Octokit.Reactive/Clients/IObservableCommitCommentReactionsClient.cs b/Octokit.Reactive/Clients/IObservableCommitCommentReactionsClient.cs index 9411e675..751f76c5 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 - /// A of representing created reaction for specified comment id. + /// 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 - /// A of representing created reaction for specified comment id. + /// 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 - /// A of s representing all reactions for specified 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 - /// A of s representing all reactions for specified 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 f1c6c053..6f2eb723 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 - /// A of representing created reaction for specified comment id. + /// 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 - /// A of representing created reaction for specified comment id. + /// 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 - /// A of s representing all reactions for specified 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 - /// A of s representing all reactions for specified 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);