Skip to content

Commit

Permalink
Fix file formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
Blatts12 committed Oct 10, 2023
1 parent 8e8ad4f commit db0a5a4
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion lib/contexted/module_analyzer.ex
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,8 @@ defmodule Contexted.ModuleAnalyzer do

defp format_type({:type, _, type_name, _}, _module), do: "#{type_name}()"

defp format_type({:op, _, operator, type}, module), do: "#{operator}#{format_type(type, module)}"
defp format_type({:op, _, operator, type}, module),
do: "#{operator}#{format_type(type, module)}"

defp format_type({:integer, _, integer}, _module), do: "#{integer}"

Expand Down

0 comments on commit db0a5a4

Please sign in to comment.