diff options
author | Burdette Lamar <[email protected]> | 2022-05-11 13:33:30 -0500 |
---|---|---|
committer | git <[email protected]> | 2022-05-12 04:11:51 +0900 |
commit | 019169346ab9c8ec940ebfd41c5b66347fa0f16b (patch) | |
tree | 659e26d6e6631d7ebc7d5a4a2e0cc2331316307a /lib/fileutils.rb | |
parent | dbca60c58d3bd34a855b10a40e8f086296efe426 (diff) |
[ruby/fileutils] Update lib/fileutils.rb
https://github.com/ruby/fileutils/commit/4771925fee
Co-authored-by: Peter Zhu <[email protected]>
Diffstat (limited to 'lib/fileutils.rb')
-rw-r--r-- | lib/fileutils.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/fileutils.rb b/lib/fileutils.rb index 575f1f84ec..367000d190 100644 --- a/lib/fileutils.rb +++ b/lib/fileutils.rb @@ -314,7 +314,7 @@ module FileUtils # returns +list+. # # With no keyword arguments, removes the directory at each +path+ in +list+, - # by calling: <tt>Dir.rmdir(path, mode)</tt>; + # by calling: <tt>Dir.rmdir(path)</tt>; # see {Dir.rmdir}[https://docs.ruby-lang.org/en/master/Dir.html#method-c-rmdir]: # # FileUtils.rmdir(%w[tmp0/tmp1 tmp2/tmp3]) # => ["tmp0/tmp1", "tmp2/tmp3"] |