From abe789068d4bdee5011222bb8c8dc87819f8f9d0 Mon Sep 17 00:00:00 2001 From: Mikkel Nylander Bundgaard Date: Sat, 14 Dec 2024 10:03:38 +0000 Subject: [PATCH] chore: Correct typo --- .../DisposeFieldsAndPropertiesInTearDownAnalyzer.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/nunit.analyzers/DisposeFieldsAndPropertiesInTearDown/DisposeFieldsAndPropertiesInTearDownAnalyzer.cs b/src/nunit.analyzers/DisposeFieldsAndPropertiesInTearDown/DisposeFieldsAndPropertiesInTearDownAnalyzer.cs index 6c4b8606..ac8a0344 100644 --- a/src/nunit.analyzers/DisposeFieldsAndPropertiesInTearDown/DisposeFieldsAndPropertiesInTearDownAnalyzer.cs +++ b/src/nunit.analyzers/DisposeFieldsAndPropertiesInTearDown/DisposeFieldsAndPropertiesInTearDownAnalyzer.cs @@ -17,7 +17,7 @@ public sealed class DisposeFieldsAndPropertiesInTearDownAnalyzer : DiagnosticAna { private static readonly char[] AdditionalDisposalMethodsSeparators = { ',', ';', ' ' }; - // Methods that are considered to be Dispoing an instance. + // Methods that are considered to be Disposing an instance. private static readonly ImmutableHashSet StandardDisposeMethods = ImmutableHashSet.Create( "Dispose", "DisposeAsync",