From c1e1e2b6d9d702b04a457435f51fda27753c0aeb Mon Sep 17 00:00:00 2001 From: stomar Date: Tue, 7 Nov 2017 20:14:46 +0000 Subject: [PATCH] pathname.c: improve docs for Pathname * ext/pathname/pathname.c: [DOC] improve example for Pathname.glob, by using a more common glob pattern, and improve the reference to the `base' keyword argument for Pathname#glob. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@60711 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ext/pathname/pathname.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ext/pathname/pathname.c b/ext/pathname/pathname.c index 9194d0e010..2d74e9cf80 100644 --- a/ext/pathname/pathname.c +++ b/ext/pathname/pathname.c @@ -1083,8 +1083,8 @@ s_glob_i(RB_BLOCK_CALL_FUNC_ARGLIST(elt, klass)) /* * Returns or yields Pathname objects. * - * Pathname.glob("config/?*.rb") - * #=> [#, #, ..] + * Pathname.glob("lib/i*.rb") + * #=> [#, #] * * See Dir.glob. */ @@ -1126,7 +1126,7 @@ glob_i(RB_BLOCK_CALL_FUNC_ARGLIST(elt, self)) * #=> [#, #] * * See Dir.glob. - * This method uses base: argument of Dir.glob. + * This method uses the +base+ keyword argument of Dir.glob. */ static VALUE path_glob(int argc, VALUE *argv, VALUE self)