diff --git a/src/libraries/System.Private.CoreLib/src/System/Buffers/Text/Utf8Parser/Utf8Parser.Boolean.cs b/src/libraries/System.Private.CoreLib/src/System/Buffers/Text/Utf8Parser/Utf8Parser.Boolean.cs
index b19cee4e43ecc..da378c06b7d70 100644
--- a/src/libraries/System.Private.CoreLib/src/System/Buffers/Text/Utf8Parser/Utf8Parser.Boolean.cs
+++ b/src/libraries/System.Private.CoreLib/src/System/Buffers/Text/Utf8Parser/Utf8Parser.Boolean.cs
@@ -12,16 +12,14 @@ public static partial class Utf8Parser
///
/// The Utf8 string to parse
/// Receives the parsed value
- /// On a successful parse, receives the length in bytes of the substring that was parsed
- /// Expected format of the Utf8 string
+ /// On a successful parse, receives the length in bytes of the substring that was parsed.
+ /// Expected format of the Utf8 string. Supported formats are 'G', 'l', and default.
///
/// true for success. "bytesConsumed" contains the length in bytes of the substring that was parsed.
/// false if the string was not syntactically valid or an overflow or underflow occurred. "bytesConsumed" is set to 0.
///
///
- /// Formats supported:
- /// G (default) True/False
- /// l true/false
+ /// The parsing is case insensitive. The format parameter is validated to ensure it is supported; however, all supported formats are treated identically.
///
///
/// System.FormatException if the format is not valid for this data type.