]> source.dussan.org Git - rspamd.git/commitdiff
Fix documentation.
authorVsevolod Stakhov <vsevolod@highsecure.ru>
Fri, 8 May 2015 09:06:25 +0000 (10:06 +0100)
committerVsevolod Stakhov <vsevolod@highsecure.ru>
Fri, 8 May 2015 09:06:25 +0000 (10:06 +0100)
src/lua/lua_regexp.c

index 221d8d308811c1c2223370108116283a8c719d85..48af6f7ab26592789f25f076939f785077c83978 100644 (file)
@@ -333,12 +333,7 @@ lua_regexp_search (lua_State *L)
  *
  * @param {string} line match the specified line against regexp object
  * @param {bool} match raw regexp instead of utf8 one
- * @return {table or nil} table of strings matched or nil
- * @example
- * local re = regexp.create_cached('/^\s*([0-9]+)\s*$/')
- * -- returns nil
- * local m1 = re:match('blah')
- * local m2 = re:match('   190   ')
+ * @return {bool} true if `line` matches
  */
 static int
 lua_regexp_match (lua_State *L)
@@ -395,12 +390,7 @@ lua_regexp_match (lua_State *L)
  * @param {string} line match the specified line against regexp object
  * @param {number} max_matches maximum number of matches
  * @param {bool} match raw regexp instead of utf8 one
- * @return {table or nil} table of strings matched or nil
- * @example
- * local re = regexp.create_cached('/^\s*([0-9]+)\s*$/')
- * -- returns nil
- * local m1 = re:match('blah')
- * local m2 = re:match('   190   ')
+ * @return {number} number of matches found in the `line` argument
  */
 static int
 lua_regexp_matchn (lua_State *L)