Fix doc comments

This commit is contained in:
Cyberboss
2018-09-27 17:06:06 -04:00
parent 9e88527381
commit ec7302594c
2 changed files with 2 additions and 1 deletions
@@ -41,7 +41,7 @@ namespace Tgstation.Server.Host.Service
/// </summary>
/// <param name="watchdogFactory">The <see cref="IWatchdogFactory"/> to create <see cref="watchdog"/> with</param>
/// <param name="loggerFactory">The <see cref="ILoggerFactory"/> for <paramref name="watchdogFactory"/></param>
/// <param name="minumumLogLevel">The minimum <see cref="LogLevel"/> to record in the event log</param>
/// <param name="minumumLogLevel">The minimum <see cref="Microsoft.Extensions.Logging.LogLevel"/> to record in the event log</param>
public ServerService(IWatchdogFactory watchdogFactory, ILoggerFactory loggerFactory, LogLevel minumumLogLevel)
{
if (watchdogFactory == null)
@@ -84,6 +84,7 @@ namespace Tgstation.Server.Host.Components.Byond
/// </summary>
/// <param name="ioManager">The value of <see cref="ioManager"/></param>
/// <param name="byondInstaller">The value of <see cref="byondInstaller"/></param>
/// <param name="eventConsumer">The value of <see cref="eventConsumer"/></param>
/// <param name="logger">The value of <see cref="logger"/></param>
public ByondManager(IIOManager ioManager, IByondInstaller byondInstaller, IEventConsumer eventConsumer, ILogger<ByondManager> logger)
{