aboutsummaryrefslogtreecommitdiffstats
path: root/docs/grammar.txt
diff options
context:
space:
mode:
authorDaniel Kirchner <daniel@ekpyron.org>2018-05-08 19:08:22 +0800
committerDaniel Kirchner <daniel@ekpyron.org>2018-07-03 21:31:34 +0800
commitf7153ee58a5b5a6bc37a535ef8243b992fe8b1b7 (patch)
tree4e5502fade3f8f933a996b382c57225724b8995c /docs/grammar.txt
parent3984beef7d389776c23053e3136ae99296c12e8e (diff)
downloaddexon-solidity-f7153ee58a5b5a6bc37a535ef8243b992fe8b1b7.tar.gz
dexon-solidity-f7153ee58a5b5a6bc37a535ef8243b992fe8b1b7.tar.zst
dexon-solidity-f7153ee58a5b5a6bc37a535ef8243b992fe8b1b7.zip
Update documentation.
Diffstat (limited to 'docs/grammar.txt')
-rw-r--r--docs/grammar.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/grammar.txt b/docs/grammar.txt
index 6bdbd016..7b29fc62 100644
--- a/docs/grammar.txt
+++ b/docs/grammar.txt
@@ -58,7 +58,7 @@ ArrayTypeName = TypeName '[' Expression? ']'
FunctionTypeName = 'function' FunctionTypeParameterList ( 'internal' | 'external' | StateMutability )*
( 'returns' FunctionTypeParameterList )?
StorageLocation = 'memory' | 'storage' | 'calldata'
-StateMutability = 'pure' | 'constant' | 'view' | 'payable'
+StateMutability = 'pure' | 'view' | 'payable'
Block = '{' Statement* '}'
Statement = IfStatement | WhileStatement | ForStatement | Block | InlineAssemblyStatement |