diff options
author | chriseth <chris@ethereum.org> | 2018-05-16 15:43:21 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-05-16 15:43:21 +0800 |
commit | c9879a6b2b20d455e30119639bbe5f052bd813e1 (patch) | |
tree | 1e0304783dccf057ffcec18b59dd27fe292b538f /docs/julia.rst | |
parent | 7f965c8671cbbd538fd0dada5a936dc58687d029 (diff) | |
parent | 9748c7ad3fc6cd999a26826d76494602b3daa46c (diff) | |
download | dexon-solidity-c9879a6b2b20d455e30119639bbe5f052bd813e1.tar.gz dexon-solidity-c9879a6b2b20d455e30119639bbe5f052bd813e1.tar.zst dexon-solidity-c9879a6b2b20d455e30119639bbe5f052bd813e1.zip |
Merge pull request #4144 from ethereum/julia-docs-fix
Fix formatting in Julia chapter
Diffstat (limited to 'docs/julia.rst')
-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 bc918117..c9b73db2 100644 --- a/docs/julia.rst +++ b/docs/julia.rst @@ -496,10 +496,10 @@ The following functions must be available: | discardu256(unused:u256) | discard value | +---------------------------------------------+-----------------------------------------------------------------+ | splitu256tou64(x:u256) -> (x1:u64, x2:u64, | split u256 to four u64's | -| x3:u64, x4:u64) | | +| x3:u64, x4:u64) | | +---------------------------------------------+-----------------------------------------------------------------+ | combineu64tou256(x1:u64, x2:u64, x3:u64, | combine four u64's into a single u256 | -| x4:u64) -> (x:u256) | | +| x4:u64) -> (x:u256) | | +---------------------------------------------+-----------------------------------------------------------------+ | keccak256(p:u256, s:u256) -> v:u256 | keccak(mem[p...(p+s))) | +---------------------------------------------+-----------------------------------------------------------------+ |