aboutsummaryrefslogtreecommitdiffstats
path: root/docs
diff options
context:
space:
mode:
authorchriseth <chris@ethereum.org>2018-08-08 18:50:45 +0800
committerGitHub <noreply@github.com>2018-08-08 18:50:45 +0800
commitd0863f4994aeefa755cd9589db75e020f1046e72 (patch)
treecc184a7dcda0bb5a8925b2fc96423ec0ce95cdf2 /docs
parentfd12c718f6fdbac2dbee77738a6ee193b613c84a (diff)
parent3064bd17bc9393d0761fa65ac64c152d7d02319c (diff)
downloaddexon-solidity-d0863f4994aeefa755cd9589db75e020f1046e72.tar
dexon-solidity-d0863f4994aeefa755cd9589db75e020f1046e72.tar.gz
dexon-solidity-d0863f4994aeefa755cd9589db75e020f1046e72.tar.bz2
dexon-solidity-d0863f4994aeefa755cd9589db75e020f1046e72.tar.lz
dexon-solidity-d0863f4994aeefa755cd9589db75e020f1046e72.tar.xz
dexon-solidity-d0863f4994aeefa755cd9589db75e020f1046e72.tar.zst
dexon-solidity-d0863f4994aeefa755cd9589db75e020f1046e72.zip
Merge pull request #4748 from ethereum/validate-identifier
Assert that type identifier contains only valid characters
Diffstat (limited to 'docs')
-rw-r--r--docs/yul.rst2
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' )