From 064918c94acba4ca261bd38228252d0b2cf8a6f3 Mon Sep 17 00:00:00 2001 From: James Ray Date: Fri, 28 Jul 2017 15:31:03 +1000 Subject: Constructor is not a solidity keyword Removed backticks --- docs/contracts.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- cgit