Remove /en slug in docs.github.com links (and stop VSCode from formatting on save) (#2573)

This commit is contained in:
Sean Killeen
2022-09-20 14:35:13 -05:00
committed by GitHub
parent 063e85e4db
commit 05aa951d41
43 changed files with 175 additions and 174 deletions

View File

@@ -17,7 +17,7 @@ namespace Octokit.Reactive
/// <remarks>https://developer.github.com/v3/reactions/#list-reactions-for-a-pull-request-review-comment</remarks>
/// <param name="owner">The owner of the repository</param>
/// <param name="name">The name of the repository</param>
/// <param name="number">The comment id</param>
/// <param name="number">The comment id</param>
IObservable<Reaction> GetAll(string owner, string name, int number);
/// <summary>
@@ -27,7 +27,7 @@ namespace Octokit.Reactive
/// <param name="owner">The owner of the repository</param>
/// <param name="name">The name of the repository</param>
/// <param name="number">The comment id</param>
/// <param name="options">Options for changing the API response</param>
/// <param name="options">Options for changing the API response</param>
IObservable<Reaction> GetAll(string owner, string name, int number, ApiOptions options);
/// <summary>
@@ -35,7 +35,7 @@ namespace Octokit.Reactive
/// </summary>
/// <remarks>https://developer.github.com/v3/reactions/#list-reactions-for-a-pull-request-review-comment</remarks>
/// <param name="repositoryId">The Id of the repository</param>
/// <param name="number">The comment id</param>
/// <param name="number">The comment id</param>
IObservable<Reaction> GetAll(long repositoryId, int number);
/// <summary>
@@ -44,7 +44,7 @@ namespace Octokit.Reactive
/// <remarks>https://developer.github.com/v3/reactions/#list-reactions-for-a-pull-request-review-comment</remarks>
/// <param name="repositoryId">The Id of the repository</param>
/// <param name="number">The comment id</param>
/// <param name="options">Options for changing the API response</param>
/// <param name="options">Options for changing the API response</param>
IObservable<Reaction> GetAll(long repositoryId, int number, ApiOptions options);
/// <summary>
@@ -69,7 +69,7 @@ namespace Octokit.Reactive
/// <summary>
/// Deletes a reaction for a specified Pull Request comment
/// </summary>
/// <remarks>https://docs.github.com/en/rest/reactions#delete-a-pull-request-comment-reaction</remarks>
/// <remarks>https://docs.github.com/rest/reactions#delete-a-pull-request-comment-reaction</remarks>
/// <param name="owner">The owner of the repository</param>
/// <param name="name">The name of the repository</param>
/// <param name="commentId">The comment id</param>
@@ -80,7 +80,7 @@ namespace Octokit.Reactive
/// <summary>
/// Deletes a reaction for a specified Pull Request comment
/// </summary>
/// <remarks>https://docs.github.com/en/rest/reactions#delete-a-pull-request-comment-reaction</remarks>
/// <remarks>https://docs.github.com/rest/reactions#delete-a-pull-request-comment-reaction</remarks>
/// <param name="repositoryId">The owner of the repository</param>
/// <param name="commentId">The comment id</param>
/// <param name="reactionId">The reaction id</param>