diff options
author | Maurelian <maurelian@protonmail.ch> | 2018-01-24 01:14:56 +0800 |
---|---|---|
committer | chriseth <chris@ethereum.org> | 2018-01-24 01:14:56 +0800 |
commit | 31aaf4336a5856e98475e2f66beb37eae271de90 (patch) | |
tree | 12ab85a12e150087863b9636d352a53952b57c9a /docs/contracts.rst | |
parent | f9fcd7b43fb8ced6012303a3722c906b02cdb445 (diff) | |
download | dexon-solidity-31aaf4336a5856e98475e2f66beb37eae271de90.tar dexon-solidity-31aaf4336a5856e98475e2f66beb37eae271de90.tar.gz dexon-solidity-31aaf4336a5856e98475e2f66beb37eae271de90.tar.bz2 dexon-solidity-31aaf4336a5856e98475e2f66beb37eae271de90.tar.lz dexon-solidity-31aaf4336a5856e98475e2f66beb37eae271de90.tar.xz dexon-solidity-31aaf4336a5856e98475e2f66beb37eae271de90.tar.zst dexon-solidity-31aaf4336a5856e98475e2f66beb37eae271de90.zip |
Add comment to clarify example (#3415)
* Add comment to clarify example
* Reverse bases.
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 fcc26b24..273ea43a 100644 --- a/docs/contracts.rst +++ b/docs/contracts.rst @@ -939,7 +939,7 @@ derived override, but this function will bypass function kill() public { /* do cleanup 2 */ super.kill(); } } - contract Final is Base2, Base1 { + contract Final is Base1, Base2 { } If ``Base1`` calls a function of ``super``, it does not simply |