diff options
author | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2020-11-21 21:22:56 +0000 |
---|---|---|
committer | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2020-11-21 21:22:56 +0000 |
commit | a323f7124ecc32099f6bfa6816fcee1ee3c9d2a5 (patch) | |
tree | d4f203ac5af5178a8f814f6d1f97769c2a3748a3 /src | |
parent | f71dee6d40be52c69f5a90536e811db8e1f852f1 (diff) | |
download | rspamd-a323f7124ecc32099f6bfa6816fcee1ee3c9d2a5.tar.gz rspamd-a323f7124ecc32099f6bfa6816fcee1ee3c9d2a5.zip |
[Minor] Add lua_parsers to docs
Diffstat (limited to 'src')
-rw-r--r-- | src/lua/lua_parsers.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/lua/lua_parsers.c b/src/lua/lua_parsers.c index 01d7fecc7..edc838b6c 100644 --- a/src/lua/lua_parsers.c +++ b/src/lua/lua_parsers.c @@ -25,12 +25,12 @@ #include "lua_parsers.h" /*** - * @module rspamd_util + * @module rspamd_parsers * This module contains Lua-C interfaces to Rspamd parsers of different kind. */ /*** - * @function util.tokenize_text(input[, exceptions]) + * @function parsers.tokenize_text(input[, exceptions]) * Create tokens from a text using optional exceptions list * @param {text/string} input input data * @param {table} exceptions, a table of pairs containing <start_pos,length> of exceptions in the input @@ -268,7 +268,7 @@ lua_parsers_parse_mail_address (lua_State *L) } else { pool = rspamd_mempool_new (rspamd_mempool_suggest_size (), - "lua util", 0); + "lua parsers", 0); own_pool = TRUE; } |