From e2a26e96b2ed8f13f8ea55d91980efe2319777f5 Mon Sep 17 00:00:00 2001 From: Jordan Brown Date: Mon, 25 Jan 2021 19:57:01 -0500 Subject: [PATCH] Documentation fixes --- src/Tgstation.Server.Host/Core/GitHubClientFactory.cs | 2 +- src/Tgstation.Server.Host/Core/IGitHubClientFactory.cs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Tgstation.Server.Host/Core/GitHubClientFactory.cs b/src/Tgstation.Server.Host/Core/GitHubClientFactory.cs index 90423ac8d4..b77f48478c 100644 --- a/src/Tgstation.Server.Host/Core/GitHubClientFactory.cs +++ b/src/Tgstation.Server.Host/Core/GitHubClientFactory.cs @@ -23,7 +23,7 @@ namespace Tgstation.Server.Host.Core /// Construct a /// /// The value of . - /// + /// The containing the value of . public GitHubClientFactory(IAssemblyInformationProvider assemblyInformationProvider, IOptions generalConfigurationOptions) { this.assemblyInformationProvider = assemblyInformationProvider ?? throw new ArgumentNullException(nameof(assemblyInformationProvider)); diff --git a/src/Tgstation.Server.Host/Core/IGitHubClientFactory.cs b/src/Tgstation.Server.Host/Core/IGitHubClientFactory.cs index 68cf07d9e7..d91962bf50 100644 --- a/src/Tgstation.Server.Host/Core/IGitHubClientFactory.cs +++ b/src/Tgstation.Server.Host/Core/IGitHubClientFactory.cs @@ -8,7 +8,7 @@ namespace Tgstation.Server.Host.Core public interface IGitHubClientFactory { /// - /// Create a client with anonymous authentication or general authentica. Low rate limit. Attempts to use the server's token to bypass this. + /// Create a client. Low rate limit unless the server's GitHubAccessToken is set to bypass it. /// /// A new . IGitHubClient CreateClient();