Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix grammar #4

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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