Merge pull request #294 from jake17007/documentation-fix

Fixed parenthases error in docs
This commit is contained in:
Iuri Matias 2017-07-15 11:41:38 -04:00 committed by GitHub
commit 6e030d60a0
1 changed files with 1 additions and 1 deletions

View File

@ -11,7 +11,7 @@ methods in EmbarkJS contracts will be converted to promises.
.. code:: javascript
var myContract = new EmbarkJS.Contract({abi: abiObject, address: "0x123"});
myContract.get().then(function(value) { console.log("value is " + value.toNumber) });
myContract.get().then(function(value) { console.log("value is " + value.toNumber()) });
**deployment**