From f2ffa8896436050af679db6b5dff7b1fc35ef819 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20D=C3=BCrst?= Date: Wed, 1 Sep 2021 09:37:13 +0900 Subject: [PATCH] Show default argument explicitly for Rexexp#match? [ci skip] --- re.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/re.c b/re.c index 7421519b70..e4c98ebb72 100644 --- a/re.c +++ b/re.c @@ -3333,8 +3333,8 @@ rb_reg_match_m(int argc, VALUE *argv, VALUE re) /* * call-seq: - * rxp.match?(str) -> true or false - * rxp.match?(str,pos) -> true or false + * rxp.match?(str) -> true or false + * rxp.match?(str, pos=0) -> true or false * * Returns true or false to indicate whether the * regexp is matched or not without updating $~ and other related variables.