Skip to content

Commit

Permalink
[ruby/pathname] Fix autoload of FileUtils
Browse files Browse the repository at this point in the history
Should not be `Pathname::FileUtils`.

ruby/pathname@d1eb366e73
  • Loading branch information
nobu authored and matzbot committed Jul 27, 2022
1 parent f42230f commit 64c8291
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ext/pathname/lib/pathname.rb
Expand Up @@ -574,9 +574,9 @@ def find(ignore_error: true) # :yield: pathname
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.
#
Expand Down

0 comments on commit 64c8291

Please sign in to comment.