diff options
author | Alex Beregszaszi <alex@rtfs.hu> | 2017-10-16 17:21:42 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-10-16 17:21:42 +0800 |
commit | dbc8655b363d4023c987ccfea2db371cc0213200 (patch) | |
tree | 672aee4a1474889d5a38a71695f1046f63498c69 /docs | |
parent | a74c9aefa7020b20f0eeef988c4faf98806fc921 (diff) | |
parent | 4047ed23fcfe40e0cad66d566869b7ad771c8d8a (diff) | |
download | dexon-solidity-dbc8655b363d4023c987ccfea2db371cc0213200.tar.gz dexon-solidity-dbc8655b363d4023c987ccfea2db371cc0213200.tar.zst dexon-solidity-dbc8655b363d4023c987ccfea2db371cc0213200.zip |
Merge pull request #3083 from davidau/patch-1
Update miscellaneous.rst
Diffstat (limited to 'docs')
-rw-r--r-- | docs/miscellaneous.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/miscellaneous.rst b/docs/miscellaneous.rst index 6c0efa9e..1c4f918c 100644 --- a/docs/miscellaneous.rst +++ b/docs/miscellaneous.rst @@ -332,7 +332,7 @@ Global Variables - ``this`` (current contract's type): the current contract, explicitly convertible to ``address`` - ``super``: the contract one level higher in the inheritance hierarchy - ``selfdestruct(address recipient)``: destroy the current contract, sending its funds to the given address -- ``suicide(address recipieint)``: an alias to ``selfdestruct`` +- ``suicide(address recipient)``: an alias to ``selfdestruct`` - ``<address>.balance`` (``uint256``): balance of the :ref:`address` in Wei - ``<address>.send(uint256 amount) returns (bool)``: send given amount of Wei to :ref:`address`, returns ``false`` on failure - ``<address>.transfer(uint256 amount)``: send given amount of Wei to :ref:`address`, throws on failure |