diff options
author | Sami Mäkelä <mrsmkl@gmail.com> | 2017-08-16 18:29:12 +0800 |
---|---|---|
committer | Alex Beregszaszi <alex@rtfs.hu> | 2017-11-22 11:33:08 +0800 |
commit | a4310fec55fa522eef6eee3bc27fad15bfafbc53 (patch) | |
tree | 036ccb5cc6261c6291d2337da4d43d8fe73caa57 | |
parent | 16f81871669f205e11d7965a989b6f467f80c5d6 (diff) | |
download | dexon-solidity-a4310fec55fa522eef6eee3bc27fad15bfafbc53.tar dexon-solidity-a4310fec55fa522eef6eee3bc27fad15bfafbc53.tar.gz dexon-solidity-a4310fec55fa522eef6eee3bc27fad15bfafbc53.tar.bz2 dexon-solidity-a4310fec55fa522eef6eee3bc27fad15bfafbc53.tar.lz dexon-solidity-a4310fec55fa522eef6eee3bc27fad15bfafbc53.tar.xz dexon-solidity-a4310fec55fa522eef6eee3bc27fad15bfafbc53.tar.zst dexon-solidity-a4310fec55fa522eef6eee3bc27fad15bfafbc53.zip |
avoid reassigning variables
-rw-r--r-- | docs/julia.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/julia.rst b/docs/julia.rst index c10e3d29..cf798363 100644 --- a/docs/julia.rst +++ b/docs/julia.rst @@ -254,9 +254,9 @@ We will use a destructuring notation for the AST nodes. let G0, L0, v = E(G, L, condition) // i = 1 .. n // Evaluate literals, context doesn't matter - let G0, L0, v1 = E(G0, L0, l1) + let _, _, v1 = E(G0, L0, l1) ... - let G0, L0, vn = E(G0, L0, ln) + let _, _, vn = E(G0, L0, ln) if there exists smallest i such that vi = v: E(G0, L0, sti) else: |