Skip to content

Commit

Permalink
Fix erroneous comment in tokenizer.cs (PowerShell#12206)
Browse files Browse the repository at this point in the history
The BigInteger NumberSuffixFlags enum is 'N', not 'I'. Fix the comment to indicate it as such.
  • Loading branch information
ShaydeNofziger committed Mar 26, 2020
1 parent 7193800 commit 238cb5c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -543,7 +543,7 @@ internal enum NumberSuffixFlags
Decimal = 0x10,

/// <summary>
/// Indicates 'I' suffix for BigInteger (arbitrarily large integer) numerals.
/// Indicates 'N' suffix for BigInteger (arbitrarily large integer) numerals.
/// </summary>
BigInteger = 0x20
}
Expand Down

0 comments on commit 238cb5c

Please sign in to comment.