From 32893d6adbe7514c2c7fdd0d7f6676d6a6167b66 Mon Sep 17 00:00:00 2001 From: Bjarke Berg Date: Thu, 9 Jul 2020 11:06:38 +0200 Subject: [PATCH] Fix wrong xml doc comment --- .../Scheduling/BackgroundTaskRunner.cs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/Umbraco.Infrastructure/Scheduling/BackgroundTaskRunner.cs b/src/Umbraco.Infrastructure/Scheduling/BackgroundTaskRunner.cs index 3a68d83fff..a9fff229f2 100644 --- a/src/Umbraco.Infrastructure/Scheduling/BackgroundTaskRunner.cs +++ b/src/Umbraco.Infrastructure/Scheduling/BackgroundTaskRunner.cs @@ -103,7 +103,7 @@ namespace Umbraco.Web.Scheduling /// Initializes a new instance of the class. /// /// A logger. - /// The hosting environment + /// The application shutdown registry /// An optional main domain hook. public BackgroundTaskRunner(ILogger logger, IApplicationShutdownRegistry applicationShutdownRegistry, MainDomHook hook = null) : this(typeof(T).FullName, new BackgroundTaskRunnerOptions(), logger, applicationShutdownRegistry, hook) @@ -114,7 +114,7 @@ namespace Umbraco.Web.Scheduling /// /// The name of the runner. /// A logger. - /// The hosting environment + /// The application shutdown registry /// An optional main domain hook. public BackgroundTaskRunner(string name, ILogger logger, IApplicationShutdownRegistry applicationShutdownRegistry, MainDomHook hook = null) : this(name, new BackgroundTaskRunnerOptions(), logger, applicationShutdownRegistry, hook) @@ -125,7 +125,7 @@ namespace Umbraco.Web.Scheduling /// /// The set of options. /// A logger. - /// The hosting environment + /// The application shutdown registry /// An optional main domain hook. public BackgroundTaskRunner(BackgroundTaskRunnerOptions options, ILogger logger, IApplicationShutdownRegistry applicationShutdownRegistry, MainDomHook hook = null) : this(typeof(T).FullName, options, logger, applicationShutdownRegistry, hook) @@ -137,7 +137,7 @@ namespace Umbraco.Web.Scheduling /// The name of the runner. /// The set of options. /// A logger. - /// The hosting environment + /// The application shutdown registry /// An optional main domain hook. public BackgroundTaskRunner(string name, BackgroundTaskRunnerOptions options, ILogger logger, IApplicationShutdownRegistry applicationShutdownRegistry, MainDomHook hook = null) {