Fix typo in SafeHandle.cs (#85607)
authorEdouard Choinière <27212526+echoix@users.noreply.github.com>
Mon, 1 May 2023 21:33:58 +0000 (17:33 -0400)
committerGitHub <noreply@github.com>
Mon, 1 May 2023 21:33:58 +0000 (14:33 -0700)
Fixes #85593
Change `providng` to `providing` in a comment.

src/libraries/System.Private.CoreLib/src/System/Runtime/InteropServices/SafeHandle.cs

index 93522077d0cdf64d31e4cc8b766695dcfcc7e39b..ef8860aed8e79dc0f5820d4d504081a59b596f5a 100644 (file)
@@ -256,7 +256,7 @@ namespace System.Runtime.InteropServices
 
             // If we get here we successfully decremented the ref count. Additionally we
             // may have decremented it to zero and set the handle state as closed. In
-            // this case (providng we own the handle) we will call the ReleaseHandle
+            // this case (providing we own the handle) we will call the ReleaseHandle
             // method on the SafeHandle subclass.
             if (performRelease)
             {