aboutsummaryrefslogtreecommitdiffstats
path: root/docs
diff options
context:
space:
mode:
authorAlex Beregszaszi <alex@rtfs.hu>2017-10-16 17:21:42 +0800
committerGitHub <noreply@github.com>2017-10-16 17:21:42 +0800
commitdbc8655b363d4023c987ccfea2db371cc0213200 (patch)
tree672aee4a1474889d5a38a71695f1046f63498c69 /docs
parenta74c9aefa7020b20f0eeef988c4faf98806fc921 (diff)
parent4047ed23fcfe40e0cad66d566869b7ad771c8d8a (diff)
downloaddexon-solidity-dbc8655b363d4023c987ccfea2db371cc0213200.tar
dexon-solidity-dbc8655b363d4023c987ccfea2db371cc0213200.tar.gz
dexon-solidity-dbc8655b363d4023c987ccfea2db371cc0213200.tar.bz2
dexon-solidity-dbc8655b363d4023c987ccfea2db371cc0213200.tar.lz
dexon-solidity-dbc8655b363d4023c987ccfea2db371cc0213200.tar.xz
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.rst2
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