Credo warning fast fixes (disable module docs)

This commit is contained in:
2024-03-07 18:39:33 -05:00
parent 1a9d6758fd
commit 390036bafb
9 changed files with 36 additions and 17 deletions

View File

@@ -1,4 +1,6 @@
defmodule IbanEx.Formatter do
@moduledoc false
alias IbanEx.Country
import IbanEx.Commons, only: [normalize: 1]
@@ -28,7 +30,7 @@ def format(iban, :compact),
def format(iban, :pretty) do
country_module = Country.country_module(iban.country_code)
country_module.to_s(iban)
country_module.to_string(iban)
end
def format(iban, :splitted) do