Skip to content

Commit

Permalink
Tweaking doc comments
Browse files Browse the repository at this point in the history
  • Loading branch information
StanleyGoldman committed Aug 9, 2018
1 parent 40bd9dc commit 9f72740
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions Octokit/Clients/IGitHubAppsClient.cs
Original file line number Diff line number Diff line change
Expand Up @@ -88,16 +88,14 @@ public interface IGitHubAppsClient
/// Enables an authenticated GitHub App to find the repository's installation information.
/// </summary>
/// <remarks>https://developer.github.com/v3/apps/#find-organization-installation</remarks>
/// <param name="owner">The owner of the repo</param>
/// <param name="repo">The name of the repo</param>
/// <param name="organization">The name of the organization</param>
Task<Installation> GetOrganizationInstallation(string organization);

/// <summary>
/// Enables an authenticated GitHub App to find the users's installation information.
/// </summary>
/// <remarks>https://developer.github.com/v3/apps/#find-user-installation</remarks>
/// <param name="owner">The owner of the repo</param>
/// <param name="repo">The name of the repo</param>
/// <param name="user">The name of the user</param>
Task<Installation> GetUserInstallation(string user);
}
}

0 comments on commit 9f72740

Please sign in to comment.