1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

pathname.c: suppress -Wcomment warning

* ext/pathname/pathname.c (path_s_glob): get rid of "/*" within block
  comment.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@36953 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nobu 2012-09-12 14:16:16 +00:00
parent 6f50057bda
commit 857ec7118f

View file

@ -934,7 +934,7 @@ glob_i(VALUE elt, VALUE klass, int argc, VALUE *argv)
/*
* Returns or yields Pathname objects.
*
* Pathname.glob("config/*.rb")
* Pathname.glob("config/" "*.rb")
* #=> [#<Pathname:config/environment.rb>, #<Pathname:config/routes.rb>, ..]
*
* See Dir.glob.