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");