From e30ae8cc3dbe4e59ae999a870c99c7cda9898f77 Mon Sep 17 00:00:00 2001 From: Luke Latham <1622880+guardrex@users.noreply.github.com> Date: Fri, 5 Oct 2018 10:11:04 -0500 Subject: [PATCH] Fix typo (#1559) --- src/Microsoft.Extensions.Hosting.Abstractions/IHostLifetime.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Microsoft.Extensions.Hosting.Abstractions/IHostLifetime.cs b/src/Microsoft.Extensions.Hosting.Abstractions/IHostLifetime.cs index 129fb44c8a..2788478d83 100644 --- a/src/Microsoft.Extensions.Hosting.Abstractions/IHostLifetime.cs +++ b/src/Microsoft.Extensions.Hosting.Abstractions/IHostLifetime.cs @@ -9,7 +9,7 @@ namespace Microsoft.Extensions.Hosting public interface IHostLifetime { /// - /// Called at the start of which will wait until it's compete before + /// Called at the start of which will wait until it's complete before /// continuing. This can be used to delay startup until signaled by an external event. /// Task WaitForStartAsync(CancellationToken cancellationToken);