We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8689b74 commit b2fbe99Copy full SHA for b2fbe99
src/Compiler/Reporting/Error/Syntax.elm
@@ -3661,8 +3661,8 @@ toNumberReport syntaxVersion source number row col =
3661
[ D.reflow "Valid binary digits include 0 and 1, so I can only recognize things like this:"
3662
, D.indent 4 <|
3663
D.vcat
3664
- [ D.fromChars "0x10"
3665
- , D.fromChars "0x0010"
+ [ D.fromChars "0b10"
+ , D.fromChars "0b0010"
3666
, D.fromChars "0b0101_0110_0011_1000"
3667
]
3668
0 commit comments