Skip to content

Commit 7223f36

Browse files
committed
Fix indentation
Replace tabs with spaces.
1 parent 8cf202e commit 7223f36

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

lib/onigumo/parser.ex

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,14 @@ defmodule Onigumo.Parser do
55

66
def main(root_path) do
77
root_path
8-
|> list_downloaded()
8+
|> list_downloaded()
99
|> Enum.map(&IO.puts(&1))
1010
end
1111

1212
defp list_downloaded(path) do
13-
path
13+
path
1414
|> File.ls!()
15-
|> Enum.filter(&is_downloaded(&1))
15+
|> Enum.filter(&is_downloaded(&1))
1616
end
1717

1818
defp is_downloaded(path) do

0 commit comments

Comments
 (0)