Fix `float_constant` definition in './doc/Grammar.md` (#5828)

This commit is contained in:
Vladimir Glavnyy 2020-03-23 23:51:57 +07:00 committed by GitHub
parent 3af7359345
commit 90f3b8e8c7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -69,6 +69,6 @@ hex\_float\_constant = `[-+]?0[xX](([.][:xdigit:]+)|([:xdigit:]+[.][:xdigit:]*)|
special\_float\_constant = `[-+]?(nan|inf|infinity)` special\_float\_constant = `[-+]?(nan|inf|infinity)`
float\_constant = dec\_integer\_constant | hex\_integer\_constant | special\_float\_constant float\_constant = dec\_float\_constant | hex\_float\_constant | special\_float\_constant
boolean\_constant = `true` | `false` boolean\_constant = `true` | `false`