From ae7415c27ec08dfc74346e6bf0ffc2e4636332c2 Mon Sep 17 00:00:00 2001 From: Nobuyoshi Nakada Date: Wed, 5 Nov 2025 19:04:12 +0900 Subject: [PATCH] [ruby/strscan] [DOC] no doc for internal methods https://github.com/ruby/strscan/commit/5614095d9c --- ext/strscan/strscan.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ext/strscan/strscan.c b/ext/strscan/strscan.c index 8fa41e646b..d63897dc61 100644 --- a/ext/strscan/strscan.c +++ b/ext/strscan/strscan.c @@ -1278,6 +1278,7 @@ strscan_must_ascii_compat(VALUE str) rb_must_asciicompat(str); } +/* :nodoc: */ static VALUE strscan_scan_base10_integer(VALUE self) { @@ -1315,6 +1316,7 @@ strscan_scan_base10_integer(VALUE self) return strscan_parse_integer(p, 10, len); } +/* :nodoc: */ static VALUE strscan_scan_base16_integer(VALUE self) {