lib/re: improve doc of `NativeRegex::re_nsub`
authorAlexis Laferrière <alexis.laf@xymus.net>
Mon, 1 Dec 2014 19:44:20 +0000 (14:44 -0500)
committerAlexis Laferrière <alexis.laf@xymus.net>
Mon, 1 Dec 2014 21:24:25 +0000 (16:24 -0500)
Signed-off-by: Alexis Laferrière <alexis.laf@xymus.net>

lib/standard/re.nit

index 98281e9..d68451e 100644 (file)
@@ -74,7 +74,7 @@ private extern class NativeRegex `{ regex_t* `}
                return message;
        `}
 
-       # This field holds the number of parenthetical subexpressions in the regular expression that was compiled.
+       # The number of parenthetical subexpressions in this compiled regular expression
        fun re_nsub: Int `{ return recv->re_nsub; `}
 end