Documentation fixes

This commit is contained in:
Jordan Brown
2021-01-25 19:57:01 -05:00
parent bc7b6b3750
commit e2a26e96b2
2 changed files with 2 additions and 2 deletions
@@ -23,7 +23,7 @@ namespace Tgstation.Server.Host.Core
/// Construct a <see cref="GitHubClientFactory"/>
/// </summary>
/// <param name="assemblyInformationProvider">The value of <see cref="assemblyInformationProvider"/>.</param>
///
/// <param name="generalConfigurationOptions">The <see cref="IOptions{TOptions}"/> containing the value of <see cref="generalConfiguration"/>.</param>
public GitHubClientFactory(IAssemblyInformationProvider assemblyInformationProvider, IOptions<GeneralConfiguration> generalConfigurationOptions)
{
this.assemblyInformationProvider = assemblyInformationProvider ?? throw new ArgumentNullException(nameof(assemblyInformationProvider));
@@ -8,7 +8,7 @@ namespace Tgstation.Server.Host.Core
public interface IGitHubClientFactory
{
/// <summary>
/// Create a client with anonymous authentication or general authentica. Low rate limit. Attempts to use the server's token to bypass this.
/// Create a <see cref="IGitHubClient"/> client. Low rate limit unless the server's GitHubAccessToken is set to bypass it.
/// </summary>
/// <returns>A new <see cref="IGitHubClient"/>.</returns>
IGitHubClient CreateClient();