From 112900d569ecfbf3c798857963172bf0d8b01e62 Mon Sep 17 00:00:00 2001 From: "aedampir@gmail.com" Date: Wed, 15 Jun 2016 17:40:48 +0700 Subject: [PATCH] modified xml docs --- Octokit/Clients/IIssueCommentReactionsClient.cs | 4 ++-- Octokit/Clients/IssueCommentReactionsClient.cs | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Octokit/Clients/IIssueCommentReactionsClient.cs b/Octokit/Clients/IIssueCommentReactionsClient.cs index 4c79f268..a3fcb279 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. + /// 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. + /// A representing created reaction for specified comment id. Task Create(int repositoryId, int number, NewReaction reaction); /// diff --git a/Octokit/Clients/IssueCommentReactionsClient.cs b/Octokit/Clients/IssueCommentReactionsClient.cs index e9b29bac..6297c0ac 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. + /// 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. + /// A representing created reaction for specified comment id. public Task Create(int repositoryId, int number, NewReaction reaction) { Ensure.ArgumentNotNull(reaction, "reaction");