From db138ef14ffa4919883a0d1e9fc1bb577057b606 Mon Sep 17 00:00:00 2001 From: andrewimcclement <33556313+andrewimcclement@users.noreply.github.com> Date: Sun, 24 Sep 2023 00:39:44 +0100 Subject: [PATCH] Update NUnit1032.md to fix typo `Dipose` -> `Dispose`. --- documentation/NUnit1032.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/documentation/NUnit1032.md b/documentation/NUnit1032.md index 15bb3c7d..f0e7d0ee 100644 --- a/documentation/NUnit1032.md +++ b/documentation/NUnit1032.md @@ -16,7 +16,7 @@ An IDisposable field/property should be Disposed in a TearDown method. ## Motivation -Not Diposing fields/properties can cause memory leaks or failing tests. +Not Disposing fields/properties can cause memory leaks or failing tests. ## How to fix violations