aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVsevolod Stakhov <vsevolod@highsecure.ru>2020-04-08 11:23:30 +0100
committerVsevolod Stakhov <vsevolod@highsecure.ru>2020-04-08 11:23:30 +0100
commite02ab407883526478b736d61f1ff7c76155f9016 (patch)
tree2342a79de28d8e7225d0990c4a79bf00d7257802
parent839c994813156d51cb4b1299b9c92aa807ee6d80 (diff)
downloadrspamd-e02ab407883526478b736d61f1ff7c76155f9016.tar.gz
rspamd-e02ab407883526478b736d61f1ff7c76155f9016.zip
[Minor] Fix doc string
-rw-r--r--src/lua/lua_text.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/lua/lua_text.c b/src/lua/lua_text.c
index a46fbbe0e..d0cc63134 100644
--- a/src/lua/lua_text.c
+++ b/src/lua/lua_text.c
@@ -27,7 +27,7 @@
* You can convert rspamd_text into string but it will copy data.
*/
-/**
+/***
* @function rspamd_text.fromstring(str)
* Creates rspamd_text from Lua string (copied to the text)
* @param {string} str string to use
@@ -35,7 +35,7 @@
*/
LUA_FUNCTION_DEF (text, fromstring);
-/**
+/***
* @function rspamd_text.null()
* Creates rspamd_text with NULL pointer for testing purposes
* @param {string} str string to use
@@ -43,7 +43,7 @@ LUA_FUNCTION_DEF (text, fromstring);
*/
LUA_FUNCTION_DEF (text, null);
-/**
+/***
* @function rspamd_text.fromtable(tbl[, delim])
* Same as `table.concat` but generates rspamd_text instead of the Lua string
* @param {table} tbl table to use