mirror of
https://github.com/zoriya/octokit.net.git
synced 2026-06-06 12:03:19 +00:00
Fix grammar
This commit is contained in:
@@ -16,7 +16,7 @@ namespace Octokit.Reactive
|
||||
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>
|
||||
|
||||
@@ -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>
|
||||
|
||||
@@ -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>
|
||||
@@ -17,7 +17,7 @@ namespace Octokit
|
||||
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>
|
||||
|
||||
@@ -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>
|
||||
@@ -16,7 +16,7 @@ namespace Octokit
|
||||
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>
|
||||
|
||||
@@ -12,7 +12,7 @@ namespace Octokit
|
||||
}
|
||||
|
||||
/// <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>
|
||||
@@ -30,7 +30,7 @@ namespace Octokit
|
||||
}
|
||||
|
||||
/// <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>
|
||||
|
||||
@@ -12,7 +12,7 @@ namespace Octokit
|
||||
}
|
||||
|
||||
/// <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>
|
||||
@@ -30,7 +30,7 @@ namespace Octokit
|
||||
}
|
||||
|
||||
/// <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>
|
||||
|
||||
@@ -319,7 +319,7 @@ namespace Octokit
|
||||
}
|
||||
|
||||
/// <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>
|
||||
@@ -366,7 +366,7 @@ namespace Octokit
|
||||
}
|
||||
|
||||
/// <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>
|
||||
@@ -1208,7 +1208,7 @@ namespace Octokit
|
||||
}
|
||||
|
||||
/// <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>
|
||||
|
||||
Reference in New Issue
Block a user