aboutsummaryrefslogtreecommitdiffstats
path: root/ext
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2017-11-01 03:26:27 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2017-11-01 03:26:27 +0000
commita739ba8258f17ab93f0653be1e1333a37fcdc3c0 (patch)
treef1aabca02151fe308a635a121e7596591bedf664 /ext
parent83d20126648e4f6b99fa10e2d781ebde8d2b3c73 (diff)
downloadruby-a739ba8258f17ab93f0653be1e1333a37fcdc3c0.tar.gz
Pathname: get rid of a -Wcomment warning [DOC]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@60600 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ext')
-rw-r--r--ext/pathname/pathname.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/pathname/pathname.c b/ext/pathname/pathname.c
index b4374c7301..9194d0e010 100644
--- a/ext/pathname/pathname.c
+++ b/ext/pathname/pathname.c
@@ -1083,7 +1083,7 @@ s_glob_i(RB_BLOCK_CALL_FUNC_ARGLIST(elt, klass))
/*
* Returns or yields Pathname objects.
*
- * Pathname.glob("config/*.rb")
+ * Pathname.glob("config/?*.rb")
* #=> [#<Pathname:config/environment.rb>, #<Pathname:config/routes.rb>, ..]
*
* See Dir.glob.