diff options
author | James Ray <james.ray0001@gmail.com> | 2017-07-28 13:31:03 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-07-28 13:31:03 +0800 |
commit | 064918c94acba4ca261bd38228252d0b2cf8a6f3 (patch) | |
tree | 794a2e69357b361855ff3f1489e7d053ed104b7e | |
parent | c5b82f7d50d2f6040eea3dd71ebe4d759b9703e6 (diff) | |
download | dexon-solidity-064918c94acba4ca261bd38228252d0b2cf8a6f3.tar.gz dexon-solidity-064918c94acba4ca261bd38228252d0b2cf8a6f3.tar.zst dexon-solidity-064918c94acba4ca261bd38228252d0b2cf8a6f3.zip |
Constructor is not a solidity keyword
Removed backticks
-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 4e33c5f3..3714667f 100644 --- a/docs/contracts.rst +++ b/docs/contracts.rst @@ -20,7 +20,7 @@ Contracts can be created "from outside" or from Solidity contracts. When a contract is created, its constructor (a function with the same name as the contract) is executed once. -A ``constructor`` is optional. Only one constructor is allowed, and this means +A constructor is optional. Only one constructor is allowed, and this means overloading is not supported. From ``web3.js``, i.e. the JavaScript |