diff options
author | Alex Beregszaszi <alex@rtfs.hu> | 2017-08-28 18:48:23 +0800 |
---|---|---|
committer | Alex Beregszaszi <alex@rtfs.hu> | 2017-08-28 18:59:35 +0800 |
commit | 412cc6bc5842f0ad2b6f2b0885f48be1dd1b4e8a (patch) | |
tree | 842a0a27e6f23f68e5d312e7dc1471da663f52a2 /docs/contracts.rst | |
parent | dd2cc899bbf71c1234d3bc1f2ea55c4716dbfd0d (diff) | |
download | dexon-solidity-412cc6bc5842f0ad2b6f2b0885f48be1dd1b4e8a.tar.gz dexon-solidity-412cc6bc5842f0ad2b6f2b0885f48be1dd1b4e8a.tar.zst dexon-solidity-412cc6bc5842f0ad2b6f2b0885f48be1dd1b4e8a.zip |
Highlight opcodes in docs
Diffstat (limited to 'docs/contracts.rst')
-rw-r--r-- | docs/contracts.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/contracts.rst b/docs/contracts.rst index fbf1be87..aa3f8fa6 100644 --- a/docs/contracts.rst +++ b/docs/contracts.rst @@ -1119,7 +1119,7 @@ are all compiled as calls (``DELEGATECALL``) to an external contract/library. If you use libraries, take care that an actual external function call is performed. ``msg.sender``, ``msg.value`` and ``this`` will retain their values -in this call, though (prior to Homestead, because of the use of `CALLCODE`, ``msg.sender`` and +in this call, though (prior to Homestead, because of the use of ``CALLCODE``, ``msg.sender`` and ``msg.value`` changed, though). The following example shows how to use memory types and |