diff options
author | Alexander Moisseev <moiseev@mezonplus.ru> | 2016-02-12 16:48:31 +0300 |
---|---|---|
committer | Alexander Moisseev <moiseev@mezonplus.ru> | 2016-02-12 16:48:31 +0300 |
commit | 0e8eb9ea035d4ea316c5a899782fa7c48488a846 (patch) | |
tree | c8d3b2f627d8009a90600fc58a790fc7e1060a20 /doc | |
parent | d8e99a0ecd83177911d10e395ee7490af91008d1 (diff) | |
download | rspamd-0e8eb9ea035d4ea316c5a899782fa7c48488a846.tar.gz rspamd-0e8eb9ea035d4ea316c5a899782fa7c48488a846.zip |
Fix configuration override and extending examples
Diffstat (limited to 'doc')
-rw-r--r-- | doc/markdown/tutorials/writing_rules.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/markdown/tutorials/writing_rules.md b/doc/markdown/tutorials/writing_rules.md index 34e3048c8..1c1c8fc81 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" { |