diff options
author | chriseth <c@ethdev.com> | 2016-11-15 06:54:44 +0800 |
---|---|---|
committer | chriseth <c@ethdev.com> | 2016-11-16 21:37:19 +0800 |
commit | eeae91c2a2897c6fd155890d654485fc8cf4dfc6 (patch) | |
tree | 3c10805a8bc669bfb0d490d643c1a4e4f0398ea9 | |
parent | b3eeb5fcf9a8efe1fc2a715fbd1a03c421824d72 (diff) | |
download | dexon-solidity-eeae91c2a2897c6fd155890d654485fc8cf4dfc6.tar dexon-solidity-eeae91c2a2897c6fd155890d654485fc8cf4dfc6.tar.gz dexon-solidity-eeae91c2a2897c6fd155890d654485fc8cf4dfc6.tar.bz2 dexon-solidity-eeae91c2a2897c6fd155890d654485fc8cf4dfc6.tar.lz dexon-solidity-eeae91c2a2897c6fd155890d654485fc8cf4dfc6.tar.xz dexon-solidity-eeae91c2a2897c6fd155890d654485fc8cf4dfc6.tar.zst dexon-solidity-eeae91c2a2897c6fd155890d654485fc8cf4dfc6.zip |
Update documentation.
-rw-r--r-- | docs/types.rst | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/docs/types.rst b/docs/types.rst index c9e2e6fa..ae27ee31 100644 --- a/docs/types.rst +++ b/docs/types.rst @@ -309,7 +309,8 @@ in an exception. The same happens if you call a function after using ``delete`` on it. If external function types are used outside of the context of Solidity, -they are converted into the ``bytes24`` type. +they are treated as the ``function`` type, which encodes the address +followed by the function identifier together in a single ``bytes24`` type. Example that shows how to use internal function types:: |