diff options
author | Alex Beregszaszi <alex@rtfs.hu> | 2018-02-27 06:59:44 +0800 |
---|---|---|
committer | Alex Beregszaszi <alex@rtfs.hu> | 2018-02-27 18:12:10 +0800 |
commit | e424bd1007343d2e39b1949e6195fc1f0698441c (patch) | |
tree | b2a841631aafaacb2d32485a1c8223eb82a4942e | |
parent | bffed2c7e4c341a686568bd6ce1d3859386f44ec (diff) | |
download | dexon-solidity-e424bd1007343d2e39b1949e6195fc1f0698441c.tar dexon-solidity-e424bd1007343d2e39b1949e6195fc1f0698441c.tar.gz dexon-solidity-e424bd1007343d2e39b1949e6195fc1f0698441c.tar.bz2 dexon-solidity-e424bd1007343d2e39b1949e6195fc1f0698441c.tar.lz dexon-solidity-e424bd1007343d2e39b1949e6195fc1f0698441c.tar.xz dexon-solidity-e424bd1007343d2e39b1949e6195fc1f0698441c.tar.zst dexon-solidity-e424bd1007343d2e39b1949e6195fc1f0698441c.zip |
Fix some keyword highlighting in docs
-rw-r--r-- | docs/assembly.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/assembly.rst b/docs/assembly.rst index 35484ad4..d7e5eaf0 100644 --- a/docs/assembly.rst +++ b/docs/assembly.rst @@ -378,8 +378,8 @@ Functions external to inline assembly can also be accessed: The assembly will push their entry label (with virtual function resolution applied). The calling semantics in solidity are: - - the caller pushes return label, arg1, arg2, ..., argn - - the call returns with ret1, ret2, ..., retm + - the caller pushes ``return label``, ``arg1``, ``arg2``, ..., ``argn`` + - the call returns with ``ret1``, ``ret2``, ..., ``retm`` This feature is still a bit cumbersome to use, because the stack offset essentially changes during the call, and thus references to local variables will be wrong. |