Skip to content

Commit 238cb5c

Browse files
Fix erroneous comment in tokenizer.cs (#12206)
The BigInteger NumberSuffixFlags enum is 'N', not 'I'. Fix the comment to indicate it as such.
1 parent 7193800 commit 238cb5c

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/System.Management.Automation/engine/parser/tokenizer.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -543,7 +543,7 @@ internal enum NumberSuffixFlags
543543
Decimal = 0x10,
544544

545545
/// <summary>
546-
/// Indicates 'I' suffix for BigInteger (arbitrarily large integer) numerals.
546+
/// Indicates 'N' suffix for BigInteger (arbitrarily large integer) numerals.
547547
/// </summary>
548548
BigInteger = 0x20
549549
}

0 commit comments

Comments
 (0)