Skip to content

Commit

Permalink
Merge pull request #4 from TattsGroup/stand-alone-reaction-client
Browse files Browse the repository at this point in the history
Fix grammar
  • Loading branch information
martinscholz83 authored Jun 10, 2016
2 parents ccd9654 + ff0c9dd commit 2107baf
Show file tree
Hide file tree
Showing 7 changed files with 13 additions and 13 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ public interface IObservableIssueReactionsClient
IObservable<Reaction> Create(string owner, string name, int number, NewReaction reaction);

/// <summary>
/// List reactions for an specified Issue.
/// List reactions for a specified Issue.
/// </summary>
/// <remarks>https://developer.github.com/v3/reactions/#list-reactions-for-an-issue</remarks>
/// <param name="owner">The owner of the repository</param>
Expand Down
2 changes: 1 addition & 1 deletion Octokit/Clients/ICommitCommentReactionsClient.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ namespace Octokit
public interface ICommitCommentReactionsClient
{
/// <summary>
/// Creates a reaction for an specified Commit Comment
/// Creates a reaction for a specified Commit Comment
/// </summary>
/// <remarks>https://developer.github.com/v3/reactions/#create-reaction-for-a-commit-comment</remarks>
/// <param name="owner">The owner of the repository</param>
Expand Down
4 changes: 2 additions & 2 deletions Octokit/Clients/IIssueCommentReactionsClient.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ namespace Octokit
public interface IIssueCommentReactionsClient
{
/// <summary>
/// Creates a reaction for an specified Issue Comment
/// Creates a reaction for a specified Issue Comment
/// </summary>
/// <remarks>https://developer.github.com/v3/reactions/#create-reaction-for-an-issue-comment</remarks>
/// <param name="owner">The owner of the repository</param>
Expand All @@ -17,7 +17,7 @@ public interface IIssueCommentReactionsClient
Task<Reaction> Create(string owner, string name, int number, NewReaction reaction);

/// <summary>
/// Get all reactions for an specified Issue Comment
/// Get all reactions for a specified Issue Comment
/// </summary>
/// <remarks>https://developer.github.com/v3/reactions/#list-reactions-for-an-issue-comment</remarks>
/// <param name="owner">The owner of the repository</param>
Expand Down
4 changes: 2 additions & 2 deletions Octokit/Clients/IIssueReactionsClient.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ namespace Octokit
public interface IIssueReactionsClient
{
/// <summary>
/// Get all reactions for an specified Issue
/// Get all reactions for a specified Issue
/// </summary>
/// <remarks>https://developer.github.com/v3/reactions/#list-reactions-for-an-issue</remarks>
/// <param name="owner">The owner of the repository</param>
Expand All @@ -16,7 +16,7 @@ public interface IIssueReactionsClient
Task<IReadOnlyList<Reaction>> GetAll(string owner, string name, int number);

/// <summary>
/// Creates a reaction for an specified Issue
/// Creates a reaction for a specified Issue
/// </summary>
/// <remarks>https://developer.github.com/v3/reactions/#create-reaction-for-an-issue</remarks>
/// <param name="owner">The owner of the repository</param>
Expand Down
4 changes: 2 additions & 2 deletions Octokit/Clients/IssueCommentReactionsClient.cs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ public IssueCommentReactionsClient(IApiConnection apiConnection)
}

/// <summary>
/// Creates a reaction for an specified Issue Comment
/// Creates a reaction for a specified Issue Comment
/// </summary>
/// <remarks>https://developer.github.com/v3/reactions/#create-reactions-for-an-issue-comment</remarks>
/// <param name="owner">The owner of the repository</param>
Expand All @@ -30,7 +30,7 @@ public Task<Reaction> Create(string owner, string name, int number, NewReaction
}

/// <summary>
/// Get all reactions for an specified Issue Comment
/// Get all reactions for a specified Issue Comment
/// </summary>
/// <remarks>https://developer.github.com/v3/reactions/#list-reactions-for-an-issue-comment</remarks>
/// <param name="owner">The owner of the repository</param>
Expand Down
4 changes: 2 additions & 2 deletions Octokit/Clients/IssueReactionsClient.cs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ public IssueReactionsClient(IApiConnection apiConnection)
}

/// <summary>
/// Creates a reaction for an specified Issue
/// Creates a reaction for a specified Issue
/// </summary>
/// <remarks>https://developer.github.com/v3/reactions/#create-reactions-for-an-issue</remarks>
/// <param name="owner">The owner of the repository</param>
Expand All @@ -30,7 +30,7 @@ public Task<Reaction> Create(string owner, string name, int number, NewReaction
}

/// <summary>
/// Get all reactions for an specified Issue
/// Get all reactions for a specified Issue
/// </summary>
/// <remarks>https://developer.github.com/v3/reactions/#list-reactions-for-an-issue</remarks>
/// <param name="owner">The owner of the repository</param>
Expand Down
6 changes: 3 additions & 3 deletions Octokit/Helpers/ApiUrls.cs
Original file line number Diff line number Diff line change
Expand Up @@ -319,7 +319,7 @@ public static Uri IssueLock(string owner, string name, int number)
}

/// <summary>
/// Returns the <see cref="Uri"/> for the reaction of an specified issue.
/// Returns the <see cref="Uri"/> for the reaction of a specified issue.
/// </summary>
/// <param name="owner">The owner of the repository</param>
/// <param name="name">The name of the repository</param>
Expand Down Expand Up @@ -366,7 +366,7 @@ public static Uri IssueComment(string owner, string name, int id)
}

/// <summary>
/// Returns the <see cref="Uri"/> for the reaction of an specified issue comment.
/// Returns the <see cref="Uri"/> for the reaction of a specified issue comment.
/// </summary>
/// <param name="owner">The owner of the repository</param>
/// <param name="name">The name of the repository</param>
Expand Down Expand Up @@ -1208,7 +1208,7 @@ public static Uri PullRequestReviewComment(string owner, string name, int number
}

/// <summary>
/// Returns the <see cref="Uri"/> for the reaction of an specified pull request review comment.
/// Returns the <see cref="Uri"/> for the reaction of a specified pull request review comment.
/// </summary>
/// <param name="owner">The owner of the repository</param>
/// <param name="name">The name of the repository</param>
Expand Down

0 comments on commit 2107baf

Please sign in to comment.