Browse Source

[Fix] Fix some typos

tags/1.7.1
Andrew Lewis 6 years ago
parent
commit
5bc4c06dd6
3 changed files with 4 additions and 4 deletions
  1. 1
    1
      interface/js/app/upload.js
  2. 2
    2
      src/libmime/lang_detection.c
  3. 1
    1
      src/lua/lua_config.c

+ 1
- 1
interface/js/app/upload.js View File

@@ -194,7 +194,7 @@ function($) {
if (source == 'fuzzy') {
//To access the proper
headers.flag = $('#fuzzyFlagText').val();
headers.weigth = $('#fuzzyWeightText').val();
headers.weight = $('#fuzzyWeightText').val();
} else {
data = $('#' + source + 'TextSource').val();
}

+ 2
- 2
src/libmime/lang_detection.c View File

@@ -588,7 +588,7 @@ rspamd_language_detector_process_chain (struct rspamd_config *cfg,
}
}
else {
/* We have a unique ngramm, increase its weigth */
/* We have a unique ngramm, increase its weight */
PTR_ARRAY_FOREACH (chain->languages, i, elt) {
elt->prob *= 4.0;
#ifdef EXTRA_LANGDET_DEBUG
@@ -1346,4 +1346,4 @@ rspamd_language_detector_detect (struct rspamd_task *task,
(end_ticks - start_ticks));

return result;
}
}

+ 1
- 1
src/lua/lua_config.c View File

@@ -1580,7 +1580,7 @@ lua_config_register_symbol (lua_State * L)

if (cfg) {
if (!rspamd_lua_parse_table_arguments (L, 2, &err,
"name=S;weigth=N;callback=F;flags=S;type=S;priority=I;parent=D;"
"name=S;weight=N;callback=F;flags=S;type=S;priority=I;parent=D;"
"score=D;description=S;group=S;one_shot=B;nshots=I;no_squeeze=B",
&name, &weight, &cbref, &flags_str, &type_str,
&priority, &parent_float,

Loading…
Cancel
Save