]> source.dussan.org Git - rspamd.git/commitdiff
[Minor] Fix `get_tld()` functions descriptions 1053/head
authorAlexander Moisseev <moiseev@mezonplus.ru>
Tue, 18 Oct 2016 10:24:52 +0000 (13:24 +0300)
committerAlexander Moisseev <moiseev@mezonplus.ru>
Tue, 18 Oct 2016 10:24:52 +0000 (13:24 +0300)
src/lua/lua_url.c
src/lua/lua_util.c

index 2fd34664b256c2931ce3d857507778112a00778d..b51487a885f9e3171f0608d18772ebeff421d0c1 100644 (file)
@@ -338,8 +338,8 @@ lua_url_get_phished (lua_State *L)
 
 /***
  * @method url:get_tld()
- * Get top level domain part of the url host
- * @return {string} top level part of the url host
+ * Get effective second level domain part (eSLD) of the url host
+ * @return {string} effective second level domain part (eSLD) of the url host
  */
 static gint
 lua_url_get_tld (lua_State *L)
index 936c31ce03ce147841d5b1484c6c03d8fa298aa0..03afb2913a5761d81241867d32cd1447c2ba6249 100644 (file)
@@ -164,10 +164,10 @@ LUA_FUNCTION_DEF (util, humanize_number);
 
 /***
  * @function util.get_tld(host)
- * Returns tld for the specified host
+ * Returns effective second level domain part (eSLD) for the specified host
  *
  * @param {string} host hostname
- * @return {string} tld part of hostname or the full hostname
+ * @return {string} eSLD part of the hostname or the full hostname if eSLD was not found
  */
 LUA_FUNCTION_DEF (util, get_tld);