From df4a5eec977d70af9f18dcaa13a7c91cd7ed19f4 Mon Sep 17 00:00:00 2001 From: Shayde Nofziger Date: Wed, 25 Mar 2020 20:50:35 -0400 Subject: [PATCH] Fix erroneous comment The BigInteger NumberSuffixFlags enum is 'N', not 'I'. Fix the comment to indicate it as such. --- src/System.Management.Automation/engine/parser/tokenizer.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/System.Management.Automation/engine/parser/tokenizer.cs b/src/System.Management.Automation/engine/parser/tokenizer.cs index 7ea0ececdb0..e5e6467c388 100644 --- a/src/System.Management.Automation/engine/parser/tokenizer.cs +++ b/src/System.Management.Automation/engine/parser/tokenizer.cs @@ -543,7 +543,7 @@ internal enum NumberSuffixFlags Decimal = 0x10, /// - /// Indicates 'I' suffix for BigInteger (arbitrarily large integer) numerals. + /// Indicates 'N' suffix for BigInteger (arbitrarily large integer) numerals. /// BigInteger = 0x20 }