mruby-dir: fix indentation

This commit is contained in:
Yukihiro "Matz" Matsumoto
2024-05-15 23:06:42 +09:00
parent 156c7ecae3
commit c635456f16
+1 -1
View File
@@ -43,7 +43,7 @@ class Dir
def foreach(path, &block)
return to_enum(:foreach, path) unless block
self.open(path) do |d|
self.open(path) do |d|
d.each(&block)
end
end