[DOC] Regexp timeout is float or nil

This commit is contained in:
Nobuyoshi Nakada 2022-06-20 17:47:44 +09:00
parent 078db98da4
commit 914c26eab3
No known key found for this signature in database
GPG Key ID: 7CD2805BFA3770C6

6
re.c
View File

@ -3661,7 +3661,7 @@ rb_reg_match_p(VALUE re, VALUE str, long pos)
* regexp encoding is fixed to +ASCII_8BIT+.
*
* If optional keyword argument +timeout+ is given,
* its integer value overrides the timeout interval for the class,
* its float value overrides the timeout interval for the class,
* Regexp.timeout.
*
* With argument +regexp+ given, returns a new regexp
@ -4323,7 +4323,7 @@ rb_reg_check_timeout(regex_t *reg, void *end_time_)
/*
* call-seq:
* Regexp.timeout -> int or float or nil
* Regexp.timeout -> float or nil
*
* It returns the current default timeout interval for Regexp matching in second.
* +nil+ means no default timeout configuration.
@ -4339,7 +4339,7 @@ rb_reg_s_timeout_get(VALUE dummy)
/*
* call-seq:
* Regexp.timeout = int or float or nil
* Regexp.timeout = float or nil
*
* It sets the default timeout interval for Regexp matching in second.
* +nil+ means no default timeout configuration.