ci(build): Fixes a number of warnings for a cleaner build (#2529)

* Fixing a number of warnings for a cleaner build

* Removing extra Summary slashes
This commit is contained in:
Chris Simpson
2022-08-08 16:20:37 +01:00
committed by GitHub
parent 5d4c928ee6
commit 651d9818c7
11 changed files with 15 additions and 74 deletions
+7 -1
View File
@@ -109,7 +109,7 @@ namespace Octokit
/// <summary>
/// Returns the <see cref="Uri"/> that returns all of the organizations.
/// </summary>
/// /// <param name="since">The integer Id of the last Organization that youve seen.</param>
/// <param name="since">The integer Id of the last Organization that youve seen.</param>
/// <returns></returns>
public static Uri AllOrganizations(long since)
{
@@ -485,6 +485,7 @@ namespace Octokit
/// <param name="owner">The owner of the repository</param>
/// <param name="name">The name of the repository</param>
/// <param name="number">The issue number</param>
/// <param name="reaction">The reactionid for the issue</param>
/// <returns></returns>
public static Uri IssueReaction(string owner, string name, int number, int reaction)
{
@@ -496,6 +497,7 @@ namespace Octokit
/// </summary>
/// <param name="repositoryId">The Id of the repository</param>
/// <param name="number">The issue number</param>
/// <param name="reaction">The reactionid for the issue</param>
/// <returns></returns>
public static Uri IssueReaction(long repositoryId, int number, int reaction)
{
@@ -589,6 +591,7 @@ namespace Octokit
/// <param name="owner">The owner of the repository</param>
/// <param name="name">The name of the repository</param>
/// <param name="number">The comment number</param>
/// <param name="reaction">The reactionid for the comment</param>
/// <returns></returns>
public static Uri IssueCommentReaction(string owner, string name, int number, int reaction)
{
@@ -600,6 +603,7 @@ namespace Octokit
/// </summary>
/// <param name="repositoryId">The owner of the repository</param>
/// <param name="number">The comment number</param>
/// <param name="reaction">The reactionid for the comment</param>
/// <returns></returns>
public static Uri IssueCommentReaction(long repositoryId, int number, int reaction)
{
@@ -1705,6 +1709,7 @@ namespace Octokit
/// <param name="owner">The owner of the repository</param>
/// <param name="name">The name of the repository</param>
/// <param name="number">The comment number</param>
/// <param name="reaction">The reactionid for the comment</param>
/// <returns></returns>
public static Uri PullRequestReviewCommentReaction(string owner, string name, int number, int reaction)
{
@@ -1716,6 +1721,7 @@ namespace Octokit
/// </summary>
/// <param name="repositoryId">The Id of the repository</param>
/// <param name="number">The comment number</param>
/// <param name="reaction">The reactionid for the comment</param>
/// <returns></returns>
public static Uri PullRequestReviewCommentReaction(long repositoryId, int number, int reaction)
{