diff options
author | chriseth <chris@ethereum.org> | 2017-08-15 23:43:29 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-08-15 23:43:29 +0800 |
commit | 8ee973f316932ffe39628cb22a9c330dfa0e0d2f (patch) | |
tree | 0eb72dc3f5994ab89f10dc9db66e593b79dcb847 /docs/contracts.rst | |
parent | 29cf3d9c585b836a19b6a8c054c51bd4e545533f (diff) | |
parent | 064918c94acba4ca261bd38228252d0b2cf8a6f3 (diff) | |
download | dexon-solidity-8ee973f316932ffe39628cb22a9c330dfa0e0d2f.tar.gz dexon-solidity-8ee973f316932ffe39628cb22a9c330dfa0e0d2f.tar.zst dexon-solidity-8ee973f316932ffe39628cb22a9c330dfa0e0d2f.zip |
Merge pull request #2660 from jamesray1/patch-26
Constructor index in docs/contracts.rst
Diffstat (limited to 'docs/contracts.rst')
-rw-r--r-- | docs/contracts.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/contracts.rst b/docs/contracts.rst index da797702..93671691 100644 --- a/docs/contracts.rst +++ b/docs/contracts.rst @@ -10,7 +10,7 @@ variables. Calling a function on a different contract (instance) will perform an EVM function call and thus switch the context such that state variables are inaccessible. -.. index:: ! contract;creation +.. index:: ! contract;creation, constructor ****************** Creating Contracts |