diff options
Diffstat (limited to 'docs')
-rw-r--r-- | docs/yul.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/yul.rst b/docs/yul.rst index 87ec0c03..87fd95eb 100644 --- a/docs/yul.rst +++ b/docs/yul.rst @@ -108,7 +108,7 @@ Grammar:: 'break' | 'continue' FunctionCall = Identifier '(' ( Expression ( ',' Expression )* )? ')' - Identifier = [a-zA-Z_$] [a-zA-Z_0-9]* + Identifier = [a-zA-Z_$] [a-zA-Z_$0-9]* IdentifierList = Identifier ( ',' Identifier)* TypeName = Identifier | BuiltinTypeName BuiltinTypeName = 'bool' | [us] ( '8' | '32' | '64' | '128' | '256' ) |