瀏覽代碼

Fix bad string caused by missing fmt call

pull/823/head
Heinz N. Gies 9 年之前
父節點
當前提交
a00cc833ad
共有 1 個檔案被更改,包括 3 行新增3 行删除
  1. +3
    -3
      src/rebar_dialyzer_format.erl

+ 3
- 3
src/rebar_dialyzer_format.erl 查看文件

@ -100,14 +100,14 @@ message_to_string({improper_list_constr, [TlType]}) ->
message_to_string({no_return, [Type|Name]}) ->
NameString =
case Name of
[] -> "~!WThe created fun ";
[] -> fmt("~!WThe created fun ");
[F, A] -> fmt("~!WFunction ~!r~w/~w ", [F, A])
end,
case Type of
no_match -> fmt("~s~!Whas no clauses that will ever match\n",[NameString]);
only_explicit -> fmt("~s~!Wonly terminates with explicit exception\n", [NameString]);
only_normal -> fmt("~s~!W~!Whas no local return\n", [NameString]);
both -> fmt("~s~!W~!Whas no local return\n", [NameString])
only_normal -> fmt("~s~!Whas no local return\n", [NameString]);
both -> fmt("~s~!Whas no local return\n", [NameString])
end;
message_to_string({record_constr, [RecConstr, FieldDiffs]}) ->
fmt("~!WRecord construction ~!!~s~!W violates the"

Loading…
取消
儲存