Skip to content
This repository has been archived by the owner on Aug 1, 2021. It is now read-only.

Commit

Permalink
module name change with dot
Browse files Browse the repository at this point in the history
  • Loading branch information
Adriana Gonzalez committed Dec 11, 2020
1 parent dc9f6d5 commit 490b09d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/csv.ex
@@ -1,4 +1,4 @@
defmodule LicensirCSV do
defmodule Licensir.CSV do
use CSV.Defaults

alias CSV.Encoding.Encoder
Expand Down
2 changes: 1 addition & 1 deletion lib/mix/tasks/licenses.ex
Expand Up @@ -47,7 +47,7 @@ defmodule Mix.Tasks.Licenses do
defp render_csv(rows) do
rows
|> List.insert_at(0, ["Package", "Version", "License"])
|> LicensirCSV.encode()
|> Licensir.CSV.encode()
|> Enum.each(&IO.write/1)
end
end

0 comments on commit 490b09d

Please sign in to comment.