diff --git a/.template.debug.html b/.template.debug.html index 4a49d2fcd..54c5b42f2 100644 --- a/.template.debug.html +++ b/.template.debug.html @@ -25,7 +25,7 @@

Experimental Credo Debug Log

Analysis in - <%= File.cwd! %> + <%= File.cwd!() %> took <%= @time_total %> ms (<%= @time_load %> ms to load, <%= @time_run %> ms running checks)

diff --git a/test/credo/check/readability/module_doc_test.exs b/test/credo/check/readability/module_doc_test.exs index e3dd548d5..ac97832fe 100644 --- a/test/credo/check/readability/module_doc_test.exs +++ b/test/credo/check/readability/module_doc_test.exs @@ -96,7 +96,7 @@ defmodule Credo.Check.Readability.ModuleDocTest do test "it should report slightly unexpected code" do """ - defmodule Person, do: def greet(), do: :howdy + defmodule Person, do: def(greet(), do: :howdy) """ |> to_source_file |> run_check(@described_check)