From 958f9b052eec8096f59416cddf13f5c5ce76a4e0 Mon Sep 17 00:00:00 2001 From: deadc0de6 Date: Tue, 25 Aug 2020 08:24:09 +0200 Subject: [PATCH] update doc --- CONTRIBUTING.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 74aa6a3..72dbea0 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -52,15 +52,15 @@ Only the higher layer is accessible to other classes of dotdrop. * config files do not have access to variables defined above in the import tree -This will result with `var0 = "echo test"` and not `var0 = test` +This will result with `dvar0 = "test"` and `var0 = "echo test"` (**not** `var0 = test`) ```yaml variables: - var0: "{{@@ dvar4 @@}}" + var0: "{{@@ dvar0 @@}}" dynvariables: dvar0: "echo test" ``` -This will result with `dvar0 = "test"` +This will result with `dvar0 = "test"` and `var0 = "test"` ```yaml variables: var0: "test"