From ca9dc2855533d37f1b44a06c82613a0958135c7d Mon Sep 17 00:00:00 2001 From: ophura <61603742+ophura@users.noreply.github.com> Date: Sat, 4 May 2024 17:19:56 +0200 Subject: [PATCH] `explosed` -> `exposed` (#101836) --- src/libraries/System.Private.CoreLib/src/System/Buffer.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libraries/System.Private.CoreLib/src/System/Buffer.cs b/src/libraries/System.Private.CoreLib/src/System/Buffer.cs index d07df58bb23769..25b6965ee2d12e 100644 --- a/src/libraries/System.Private.CoreLib/src/System/Buffer.cs +++ b/src/libraries/System.Private.CoreLib/src/System/Buffer.cs @@ -62,7 +62,7 @@ public static int ByteLength(Array array) nuint byteLength = array.NativeLength * (nuint)array.GetElementSize(); - // This API is explosed both as Buffer.ByteLength and also used indirectly in argument + // This API is exposed both as Buffer.ByteLength and also used indirectly in argument // checks for Buffer.GetByte/SetByte. // // If somebody called Get/SetByte on 2GB+ arrays, there is a decent chance that