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

[ruby/pathname] Fix autoload of FileUtils

Should not be `Pathname::FileUtils`.

https://github.com/ruby/pathname/commit/d1eb366e73
This commit is contained in:
Nobuyoshi Nakada 2022-07-27 14:11:50 +09:00 committed by git
parent f42230ff22
commit 64c8291c7e

View file

@ -574,9 +574,9 @@ class Pathname # * Find *
end
class Pathname # * FileUtils *
autoload(:FileUtils, 'fileutils')
autoload(:FileUtils, 'fileutils')
class Pathname # * FileUtils *
# Creates a full path, including any intermediate directories that don't yet
# exist.
#