diff options
author | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2021-03-25 20:29:03 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-03-25 20:29:03 +0000 |
commit | e7a58b8bfc5f8254e37afd08b2dd2380dd1353cb (patch) | |
tree | 0e31077a159ce52d9590ccee9a0bdf70645b4cbc | |
parent | 41bfa9283e52dc66cea00a0f2ef612906cb3b0f9 (diff) | |
parent | 7f7d40887600e60090fb83f9fa720df18526edaa (diff) | |
download | rspamd-e7a58b8bfc5f8254e37afd08b2dd2380dd1353cb.tar.gz rspamd-e7a58b8bfc5f8254e37afd08b2dd2380dd1353cb.zip |
Merge pull request #3686 from Nothing4You/fix-typos
[Minor] fix typo: obfusicated -> obfuscated
-rw-r--r-- | rules/misc.lua | 2 | ||||
-rw-r--r-- | src/lua/lua_url.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/rules/misc.lua b/rules/misc.lua index 8f98fcc06..01a7c1f4b 100644 --- a/rules/misc.lua +++ b/rules/misc.lua @@ -142,7 +142,7 @@ local obscured_id = rspamd_config:register_symbol{ name = 'R_SUSPICIOUS_URL', score = 5.0, one_shot = true, - description = 'Obfusicated or suspicious URL has been found in a message', + description = 'Obfuscated or suspicious URL has been found in a message', group = 'url' } diff --git a/src/lua/lua_url.c b/src/lua/lua_url.c index b56f025c4..37bccd1b2 100644 --- a/src/lua/lua_url.c +++ b/src/lua/lua_url.c @@ -401,7 +401,7 @@ lua_url_is_redirected (lua_State *L) /*** * @method url:is_obscured() - * Check whether URL is treated as obscured or obfusicated (e.g. numbers in IP address or other hacks) + * Check whether URL is treated as obscured or obfuscated (e.g. numbers in IP address or other hacks) * @return {boolean} `true` if URL is obscured */ static gint |