From 0ecd8c8bc2efe152b90023404fb3bd75c9706b13 Mon Sep 17 00:00:00 2001 From: mame Date: Tue, 3 Jun 2008 14:07:50 +0000 Subject: * ext/strscan/strscan.c (strscan_scan_full, strscan_search_full): fix document. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@16799 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ext/strscan/strscan.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'ext/strscan/strscan.c') diff --git a/ext/strscan/strscan.c b/ext/strscan/strscan.c index 5cce337638..7c6cf05bf3 100644 --- a/ext/strscan/strscan.c +++ b/ext/strscan/strscan.c @@ -530,11 +530,11 @@ strscan_check(VALUE self, VALUE re) } /* - * call-seq: scan_full(pattern, return_string_p, advance_pointer_p) + * call-seq: scan_full(pattern, advance_pointer_p, return_string_p) * * Tests whether the given +pattern+ is matched from the current scan pointer. - * Returns the matched string if +return_string_p+ is true. * Advances the scan pointer if +advance_pointer_p+ is true. + * Returns the matched string if +return_string_p+ is true. * The match register is affected. * * "full" means "#scan with full parameters". @@ -624,12 +624,12 @@ strscan_check_until(VALUE self, VALUE re) } /* - * call-seq: search_full(pattern, return_string_p, advance_pointer_p) + * call-seq: search_full(pattern, advance_pointer_p, return_string_p) * * Scans the string _until_ the +pattern+ is matched. + * Advances the scan pointer if +advance_pointer_p+, otherwise not. * Returns the matched string if +return_string_p+ is true, otherwise * returns the number of bytes advanced. - * Advances the scan pointer if +advance_pointer_p+, otherwise not. * This method does affect the match register. */ static VALUE -- cgit v1.2.3