summaryrefslogtreecommitdiff
path: root/re.c
diff options
context:
space:
mode:
authorNobuyoshi Nakada <nobu@ruby-lang.org>2022-06-20 17:47:44 +0900
committerNobuyoshi Nakada <nobu@ruby-lang.org>2022-06-20 17:47:44 +0900
commit914c26eab32b4664e981c7c604d1f17a56b10e28 (patch)
treec0cbc36a0f427e270c2e9596ceaa8777878528b7 /re.c
parent078db98da42444b3cdbd0f391b680ba8193299fd (diff)
downloadruby-914c26eab32b4664e981c7c604d1f17a56b10e28.tar.gz
[DOC] Regexp timeout is float or nil
Diffstat (limited to 're.c')
-rw-r--r--re.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/re.c b/re.c
index 6a6aa69cec..04dfe9dd03 100644
--- a/re.c
+++ b/re.c
@@ -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.