aboutsummaryrefslogtreecommitdiffstats
path: root/docs/units-and-global-variables.rst
diff options
context:
space:
mode:
authorRaine Revere <raineorshine@gmail.com>2016-05-10 00:15:58 +0800
committerRaine Revere <raineorshine@gmail.com>2016-05-10 00:15:58 +0800
commit4bfec4efa968d327e622a20f60bd0f08809ff6ee (patch)
tree8ea6425444b9cbc4287b01a1686d0ad810bb0711 /docs/units-and-global-variables.rst
parent5e6e9df7dd3878c8b0de54b8ddc33932226eb291 (diff)
downloaddexon-solidity-4bfec4efa968d327e622a20f60bd0f08809ff6ee.tar.gz
dexon-solidity-4bfec4efa968d327e622a20f60bd0f08809ff6ee.tar.zst
dexon-solidity-4bfec4efa968d327e622a20f60bd0f08809ff6ee.zip
Update units-and-global-variables.rst with link to address ref
Diffstat (limited to 'docs/units-and-global-variables.rst')
-rw-r--r--docs/units-and-global-variables.rst7
1 files changed, 2 insertions, 5 deletions
diff --git a/docs/units-and-global-variables.rst b/docs/units-and-global-variables.rst
index 8ad0da4f..141c4a3c 100644
--- a/docs/units-and-global-variables.rst
+++ b/docs/units-and-global-variables.rst
@@ -117,13 +117,10 @@ Contract Related
----------------
`this` (current contract's type):
- the current contract, explicitly convertible to `address`
-
- - this.balance: The balance of the current account.
- - this.send: Send ether to an address.
+ the current contract, explicitly convertible to :ref:`address`
`selfdestruct(address)`:
- destroy the current contract, sending its funds to the given address
+ destroy the current contract, sending its funds to the given :ref:`address`
Furthermore, all functions of the current contract are callable directly including the current function.