lib/core/facets/dir/recurse.rb in facets-2.9.0 vs lib/core/facets/dir/recurse.rb in facets-2.9.1
- old
+ new
@@ -1,9 +1,9 @@
class Dir
# Recursively scan a directory and pass each file to the given block.
#
- # Dir.recurse('tmp') do |path|
+ # Dir.recurse('.') do |path|
# # ...
# end
#
# CREDIT: George Moschovitis
#