From 0e8eb9ea035d4ea316c5a899782fa7c48488a846 Mon Sep 17 00:00:00 2001 From: Alexander Moisseev Date: Fri, 12 Feb 2016 16:48:31 +0300 Subject: [PATCH] Fix configuration override and extending examples --- doc/markdown/tutorials/writing_rules.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/markdown/tutorials/writing_rules.md b/doc/markdown/tutorials/writing_rules.md index 34e3048c89..1c1c8fc817 100644 --- a/doc/markdown/tutorials/writing_rules.md +++ b/doc/markdown/tutorials/writing_rules.md @@ -58,7 +58,7 @@ Resulting config: ~~~nginx var1 = "value1"; -var2 = "value2"; +var1 = "value2"; section "name" { var2 = "value2"; @@ -93,7 +93,7 @@ section "name" { Resulting config: ~~~nginx -var1 = "value1"; +var1 = "value2"; # Note that var2 is removed completely section "name" { -- 2.47.3