aboutsummaryrefslogtreecommitdiffstats
path: root/docs/grammar.txt
diff options
context:
space:
mode:
authorFederico Bond <federicobond@gmail.com>2016-12-28 23:53:40 +0800
committerFederico Bond <federicobond@gmail.com>2016-12-28 23:53:40 +0800
commit1f80dbb39a69eb3be94111d190aa8511990fa951 (patch)
tree5512ac44d231a31b18e3cfd5f34a492629722ccf /docs/grammar.txt
parenteafd852a766645da0cb466bff681b9bbb1d6da00 (diff)
downloaddexon-solidity-1f80dbb39a69eb3be94111d190aa8511990fa951.tar.gz
dexon-solidity-1f80dbb39a69eb3be94111d190aa8511990fa951.tar.zst
dexon-solidity-1f80dbb39a69eb3be94111d190aa8511990fa951.zip
Add missing right-hand side expression for shifts
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 c9f7f448..5965d1f6 100644
--- a/docs/grammar.txt
+++ b/docs/grammar.txt
@@ -69,7 +69,7 @@ Expression =
| Expression '**' Expression
| Expression ('*' | '/' | '%') Expression
| Expression ('+' | '-') Expression
- | Expression ('<<' | '>>')
+ | Expression ('<<' | '>>') Expression
| Expression '&' Expression
| Expression '^' Expression
| Expression '|' Expression