From 1bd857c957648a7bf2211c3faa6712bef7dd3f28 Mon Sep 17 00:00:00 2001 From: Benedek Farkas Date: Thu, 9 Feb 2023 21:17:36 +0100 Subject: [PATCH] Adding spell-checking line ignore comment --- .../Handlers/FeaturesEventHandler.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lombiq.Hosting.Tenants.FeaturesGuard/Handlers/FeaturesEventHandler.cs b/Lombiq.Hosting.Tenants.FeaturesGuard/Handlers/FeaturesEventHandler.cs index 1a80febc..3da2235a 100644 --- a/Lombiq.Hosting.Tenants.FeaturesGuard/Handlers/FeaturesEventHandler.cs +++ b/Lombiq.Hosting.Tenants.FeaturesGuard/Handlers/FeaturesEventHandler.cs @@ -48,7 +48,7 @@ async Task IFeatureEventHandler.DisabledAsync(IFeatureInfo feature) await DisableConditionallyEnabledFeaturesAsync(feature); } - Task IFeatureEventHandler.UninstallingAsync(IFeatureInfo feature) => Task.CompletedTask; + Task IFeatureEventHandler.UninstallingAsync(IFeatureInfo feature) => Task.CompletedTask; // #spell-check-ignore-line Task IFeatureEventHandler.UninstalledAsync(IFeatureInfo feature) => Task.CompletedTask;