From 8781585341c40c8ecd9ea2177aa4274ad1d36a3e Mon Sep 17 00:00:00 2001 From: Jonathan Rainville Date: Wed, 8 May 2019 12:57:41 -0400 Subject: [PATCH] fix(@embark/site): fix strategy not put in the right section --- site/source/docs/contracts_configuration.md | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/site/source/docs/contracts_configuration.md b/site/source/docs/contracts_configuration.md index d0fb4f22c..8303bba12 100644 --- a/site/source/docs/contracts_configuration.md +++ b/site/source/docs/contracts_configuration.md @@ -137,14 +137,9 @@ There are two possible strategy options: - **explicit** - Setting this option to `explicit` tells Embark to deploy the Smart Contracts specified in the `contracts` configuration without their dependencies. This can be combined with [disabling deployment](#Disabling-deployment) of individual Smart Contracts for fine control. ``` +strategy: 'explicit' // 'implicit' is the default contracts: { - strategy: 'explicit' // 'implicit' is the default - SimpleStorage: { - deploy: false - }, - AnotherStorage: { - ... - } + ... } ```