diff options
author | Alex Beregszaszi <alex@rtfs.hu> | 2017-02-03 07:52:34 +0800 |
---|---|---|
committer | Alex Beregszaszi <alex@rtfs.hu> | 2017-02-03 08:17:21 +0800 |
commit | ace583d0a1ec21cc184fb5734a9fd8c2147391e4 (patch) | |
tree | b05291501171ac29b1b4910ecb4ba55dcb999c23 /docs/control-structures.rst | |
parent | bea59b0ca7fd497baf82e5960649854dff268d8a (diff) | |
download | dexon-solidity-ace583d0a1ec21cc184fb5734a9fd8c2147391e4.tar dexon-solidity-ace583d0a1ec21cc184fb5734a9fd8c2147391e4.tar.gz dexon-solidity-ace583d0a1ec21cc184fb5734a9fd8c2147391e4.tar.bz2 dexon-solidity-ace583d0a1ec21cc184fb5734a9fd8c2147391e4.tar.lz dexon-solidity-ace583d0a1ec21cc184fb5734a9fd8c2147391e4.tar.xz dexon-solidity-ace583d0a1ec21cc184fb5734a9fd8c2147391e4.tar.zst dexon-solidity-ace583d0a1ec21cc184fb5734a9fd8c2147391e4.zip |
Rename accessor to getter
Diffstat (limited to 'docs/control-structures.rst')
-rw-r--r-- | docs/control-structures.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/control-structures.rst b/docs/control-structures.rst index 757988cc..1c7d71f2 100644 --- a/docs/control-structures.rst +++ b/docs/control-structures.rst @@ -393,7 +393,7 @@ Currently, Solidity automatically generates a runtime exception in the following #. If you convert a value too big or negative into an enum type. #. If you perform an external function call targeting a contract that contains no code. #. If your contract receives Ether via a public function without ``payable`` modifier (including the constructor and the fallback function). -#. If your contract receives Ether via a public accessor function. +#. If your contract receives Ether via a public getter function. #. If you call a zero-initialized variable of internal function type. Internally, Solidity performs an "invalid jump" when a user-provided exception is thrown. In contrast, it performs an invalid operation |