diff options
author | chriseth <chris@ethereum.org> | 2017-07-27 17:03:06 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-07-27 17:03:06 +0800 |
commit | 31449c9834cb2b1c7fe4b6d7dc554cbc65f87c20 (patch) | |
tree | 309d199553370b285e3887a653f44fb5404d48ef /docs/units-and-global-variables.rst | |
parent | 318e52c77d80a3a15256b1570b5a5bcef19368fe (diff) | |
download | dexon-solidity-31449c9834cb2b1c7fe4b6d7dc554cbc65f87c20.tar.gz dexon-solidity-31449c9834cb2b1c7fe4b6d7dc554cbc65f87c20.tar.zst dexon-solidity-31449c9834cb2b1c7fe4b6d7dc554cbc65f87c20.zip |
Closing parenthesis
Diffstat (limited to 'docs/units-and-global-variables.rst')
-rw-r--r-- | docs/units-and-global-variables.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/units-and-global-variables.rst b/docs/units-and-global-variables.rst index 7ca3adac..64795306 100644 --- a/docs/units-and-global-variables.rst +++ b/docs/units-and-global-variables.rst @@ -174,7 +174,7 @@ Contract Related ``selfdestruct(address recipient)``: destroy the current contract, sending its funds to the given :ref:`address` -``suicide(address recipient``: +``suicide(address recipient)``: alias to ``selfdestruct`` Furthermore, all functions of the current contract are callable directly including the current function. |