From d89e8fb53a01b9d997145c9723bd949b36f3c1a2 Mon Sep 17 00:00:00 2001 From: zzak Date: Thu, 23 Jan 2014 05:28:36 +0000 Subject: [PATCH] * lib/fileutils.rb: [DOC] Fix typo in options_of() example [Bug #9392] Patch by Giorgos Tsiftsis git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@44688 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 5 +++++ lib/fileutils.rb | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 57a98a3994..6ef5a3f60a 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +Thu Jan 23 14:26:44 2014 Zachary Scott + + * lib/fileutils.rb: [DOC] Fix typo in options_of() example [Bug #9392] + Patch by Giorgos Tsiftsis + Thu Jan 23 13:56:16 2014 Zachary Scott * README -> README.md: [DOC] Format README with Markdown [Bug #9255] diff --git a/lib/fileutils.rb b/lib/fileutils.rb index f42fe9710d..503e3f571d 100644 --- a/lib/fileutils.rb +++ b/lib/fileutils.rb @@ -1659,7 +1659,7 @@ module FileUtils # # Returns an Array of option names of the method +mid+. # - # p FileUtils.options(:rm) #=> ["noop", "verbose", "force"] + # p FileUtils.options_of(:rm) #=> ["noop", "verbose", "force"] # def FileUtils.options_of(mid) OPT_TABLE[mid.to_s].map {|sym| sym.to_s }