From abafe3354fa1a9e442086440694bb7cd97e68c5c Mon Sep 17 00:00:00 2001 From: nobu Date: Wed, 8 Oct 2014 15:53:11 +0000 Subject: [PATCH] dir.c: fix rdoc [ci skip] * dir.c (dir_s_aref): fix rdoc. `Dir.glob` allows an array but `Dir[]` not. the former accepts an optional parameter `flags`, while the latter accepts arbitrary number of arguments but no `flags`. [ruby-core:65265] [Bug #10294] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@47850 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 7 +++++++ dir.c | 2 -- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index 44ee3e8642..007b2183ee 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +Thu Oct 9 00:53:15 2014 Nobuyoshi Nakada + + * dir.c (dir_s_aref): fix rdoc. `Dir.glob` allows an array but + `Dir[]` not. the former accepts an optional parameter `flags`, + while the latter accepts arbitrary number of arguments but no + `flags`. [ruby-core:65265] [Bug #10294] + Wed Oct 8 21:44:10 2014 Masaki Suketa * ext/win32ole/win32ole_variable.c: use typed data. diff --git a/dir.c b/dir.c index 51312717fe..82df7210b7 100644 --- a/dir.c +++ b/dir.c @@ -1869,11 +1869,9 @@ dir_globs(long argc, const VALUE *argv, int flags) /* * call-seq: - * Dir[ array ] -> array * Dir[ string [, string ...] ] -> array * * Equivalent to calling - * Dir.glob(array,0) and * Dir.glob([string,...],0). * */