From 398cc98f7c38ded2c08930ffd7fffc3855d88544 Mon Sep 17 00:00:00 2001 From: Sebastien Marichal Date: Fri, 10 Jan 2025 10:36:46 +0100 Subject: [PATCH] Modify S2930: Fix typo (#4608) --- rules/S2930/csharp/rule.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rules/S2930/csharp/rule.adoc b/rules/S2930/csharp/rule.adoc index 4e33cbcbe1e..0f5c53b7aa4 100644 --- a/rules/S2930/csharp/rule.adoc +++ b/rules/S2930/csharp/rule.adoc @@ -6,7 +6,7 @@ In addition, it's essential to manage other system resources besides memory. The This rule keeps track of `private` fields and local variables of specific types that implement `IDisposable` or `IAsyncDisposable`. It identifies instances of these types that are not properly disposed, closed, aliased, returned, or passed to other methods. This applies to instances that are either directly created using the `new` operator or instantiated through a predefined list of factory methods. -Here is the list of the types tacked by this rule: +Here is the list of the types tracked by this rule: * `FluentAssertions.Execution.AssertionScope` * `System.Drawing.Bitmap`