From 4ac1f447f02c747c364d2ae6385b3db505f3f68e Mon Sep 17 00:00:00 2001 From: Dawso125 <113639836+Dawso125@users.noreply.github.com> Date: Fri, 3 May 2024 11:49:10 -0500 Subject: [PATCH] Fixing Typo in comment in Boolean.cs There is a typo that exists on the "False" Comment in line 111 of Boolean.cs. This PR Fixes "Fals" to "False" --- src/libraries/System.Private.CoreLib/src/System/Boolean.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libraries/System.Private.CoreLib/src/System/Boolean.cs b/src/libraries/System.Private.CoreLib/src/System/Boolean.cs index 07db907c2b1ed..2c042f675b438 100644 --- a/src/libraries/System.Private.CoreLib/src/System/Boolean.cs +++ b/src/libraries/System.Private.CoreLib/src/System/Boolean.cs @@ -108,7 +108,7 @@ public bool TryFormat(Span destination, out int charsWritten) { if (destination.Length > 4) { - ulong fals_val = BitConverter.IsLittleEndian ? 0x73006C00610046ul : 0x460061006C0073ul; // "Fals" + ulong fals_val = BitConverter.IsLittleEndian ? 0x73006C00610046ul : 0x460061006C0073ul; // "False" MemoryMarshal.Write(MemoryMarshal.AsBytes(destination), in fals_val); destination[4] = 'e'; charsWritten = 5;