aboutsummaryrefslogtreecommitdiffstats
path: root/docs/assembly.rst
diff options
context:
space:
mode:
authorAlex Beregszaszi <alex@rtfs.hu>2018-02-27 06:59:44 +0800
committerAlex Beregszaszi <alex@rtfs.hu>2018-02-27 18:12:10 +0800
commite424bd1007343d2e39b1949e6195fc1f0698441c (patch)
treeb2a841631aafaacb2d32485a1c8223eb82a4942e /docs/assembly.rst
parentbffed2c7e4c341a686568bd6ce1d3859386f44ec (diff)
downloaddexon-solidity-e424bd1007343d2e39b1949e6195fc1f0698441c.tar.gz
dexon-solidity-e424bd1007343d2e39b1949e6195fc1f0698441c.tar.zst
dexon-solidity-e424bd1007343d2e39b1949e6195fc1f0698441c.zip
Fix some keyword highlighting in docs
Diffstat (limited to 'docs/assembly.rst')
-rw-r--r--docs/assembly.rst4
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.