Skip to content

Commit

Permalink
Fix reference to Dir.glob in Rake::FileList.glob
Browse files Browse the repository at this point in the history
  • Loading branch information
eregon committed Nov 16, 2012
1 parent 13dc28f commit 57a015d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/rake/file_list.rb
Original file line number Diff line number Diff line change
Expand Up @@ -385,7 +385,7 @@ def [](*args)
end

# Get a sorted list of files matching the pattern. This method
# should be prefered to Dir[pattern] and Dir.glob[pattern] because
# should be prefered to Dir[pattern] and Dir.glob(pattern) because
# the files returned are guaranteed to be sorted.
def glob(pattern, *args)
Dir.glob(pattern, *args).sort
Expand Down

0 comments on commit 57a015d

Please sign in to comment.