aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexander Moisseev <moiseev@mezonplus.ru>2016-02-12 17:30:09 +0300
committerAlexander Moisseev <moiseev@mezonplus.ru>2016-02-12 17:30:09 +0300
commit0b453262d2aff4a9574f90401af810d7c24f8483 (patch)
tree81b01c0130664b50d5adae20a6aa1386ccb4ebf2
parentd8e99a0ecd83177911d10e395ee7490af91008d1 (diff)
downloadrspamd-0b453262d2aff4a9574f90401af810d7c24f8483.tar.gz
rspamd-0b453262d2aff4a9574f90401af810d7c24f8483.zip
Fix runaway comma in lua rule example
-rw-r--r--doc/markdown/tutorials/writing_rules.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/markdown/tutorials/writing_rules.md b/doc/markdown/tutorials/writing_rules.md
index 34e3048c8..5cdd84eb2 100644
--- a/doc/markdown/tutorials/writing_rules.md
+++ b/doc/markdown/tutorials/writing_rules.md
@@ -154,7 +154,7 @@ rspamd_config.MY_LUA_SYMBOL = {
callback = function(task)
-- Do something
return true
- end
+ end,
score = -1.5,
description = 'another cool rule',
group = 'my symbols'