diff options
author | Alex Beregszaszi <alex@rtfs.hu> | 2018-05-16 08:11:27 +0800 |
---|---|---|
committer | Alex Beregszaszi <alex@rtfs.hu> | 2018-05-16 08:11:27 +0800 |
commit | 9748c7ad3fc6cd999a26826d76494602b3daa46c (patch) | |
tree | 2ab03a7c4f61aae5d5b5807e39ad44285498b5aa | |
parent | bfb6b0b464520e96e80126d789f72d5f0cae2e3e (diff) | |
download | dexon-solidity-9748c7ad3fc6cd999a26826d76494602b3daa46c.tar dexon-solidity-9748c7ad3fc6cd999a26826d76494602b3daa46c.tar.gz dexon-solidity-9748c7ad3fc6cd999a26826d76494602b3daa46c.tar.bz2 dexon-solidity-9748c7ad3fc6cd999a26826d76494602b3daa46c.tar.lz dexon-solidity-9748c7ad3fc6cd999a26826d76494602b3daa46c.tar.xz dexon-solidity-9748c7ad3fc6cd999a26826d76494602b3daa46c.tar.zst dexon-solidity-9748c7ad3fc6cd999a26826d76494602b3daa46c.zip |
Fix formatting in Julia chapter
-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 078bc55b..2c99b91e 100644 --- a/docs/julia.rst +++ b/docs/julia.rst @@ -476,10 +476,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) | | +---------------------------------------------+-----------------------------------------------------------------+ | sha3(p:u256, s:u256) -> v:u256 | keccak(mem[p...(p+s))) | +---------------------------------------------+-----------------------------------------------------------------+ |