Browse Source

[Doc] Further fixes in docs layout

tags/1.9.0
Vsevolod Stakhov 5 years ago
parent
commit
6655c2dea6
2 changed files with 3 additions and 3 deletions
  1. 1
    1
      doc/doxydown/doxydown.pl
  2. 2
    2
      src/lua/lua_task.c

+ 1
- 1
doc/doxydown/doxydown.pl View File

@@ -380,7 +380,7 @@ sub parse_function {
}

if ( !$f->{'brief'} && $f->{'data'} ) {
$f->{'data'} =~ /^([^.]+)\.?.*/;
$f->{'data'} =~ /^(.*?)(?:(?:[.:]\s)|\n).*/;

if ( $1 ) {
$f->{'brief'} = "$1.";

+ 2
- 2
src/lua/lua_task.c View File

@@ -52,13 +52,13 @@ end
/***
* @function rspamd_task.load_from_file(filename[, cfg])
* Loads a message from specific file
* @return {boolean},{rspamd_task|error} status + new task or error message
* @return {boolean,rspamd_task|error} status + new task or error message
*/
LUA_FUNCTION_DEF (task, load_from_file);
/***
* @function rspamd_task.load_from_string(message[, cfg])
* Loads a message from specific file
* @return {boolean},{rspamd_task|error} status + new task or error message
* @return {boolean,rspamd_task|error} status + new task or error message
*/
LUA_FUNCTION_DEF (task, load_from_string);


Loading…
Cancel
Save