From: Alexander Moisseev Date: Fri, 12 Feb 2016 14:30:09 +0000 (+0300) Subject: Fix runaway comma in lua rule example X-Git-Tag: 1.2.0~247^2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=refs%2Fpull%2F524%2Fhead;p=thirdparty%2Frspamd.git Fix runaway comma in lua rule example --- diff --git a/doc/markdown/tutorials/writing_rules.md b/doc/markdown/tutorials/writing_rules.md index 34e3048c89..5cdd84eb26 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'