From cd645ab2d64493baa853d47e9e190b261f08daa2 Mon Sep 17 00:00:00 2001 From: Iuri Matias Date: Sun, 12 Mar 2017 18:58:22 -0400 Subject: [PATCH] fix contracts config example in README and Documentation --- README.md | 6 +++--- docs/using-contracts.rst | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 3fa98e19..39e95e8a 100644 --- a/README.md +++ b/README.md @@ -42,7 +42,7 @@ Table of Contents * [Dashboard](#dashboard) * [Creating a new DApp](#creating-a-new-dapp) * [Libraries and APIs available](#libraries-and-languages-available) -* [Using and Configuring Contracts](#dapp-structure) +* [Using and Configuring Contracts](#using-contracts) * [EmbarkJS](#embarkjs) * [EmbarkJS - Storage (IPFS)](#embarkjs---storage) * [EmbarkJS - Communication (Whisper/Orbit)](#embarkjs---communication) @@ -227,7 +227,7 @@ If you are using multiple contracts, you can pass a reference to another contrac "SimpleStorage": { "args": [ 100, - $MyStorage + "$MyStorage" ] }, "MyStorage": { @@ -237,7 +237,7 @@ If you are using multiple contracts, you can pass a reference to another contrac }, "MyMainContract": { "args": [ - $SimpleStorage + "$SimpleStorage" ] } } diff --git a/docs/using-contracts.rst b/docs/using-contracts.rst index 7c68a287..d3cbe86a 100644 --- a/docs/using-contracts.rst +++ b/docs/using-contracts.rst @@ -64,7 +64,7 @@ with the correct address for the contract. "SimpleStorage": { "args": [ 100, - $MyStorage + "$MyStorage" ] }, "MyStorage": { @@ -74,7 +74,7 @@ with the correct address for the contract. }, "MyMainContract": { "args": [ - $SimpleStorage + "$SimpleStorage" ] } }