소스 검색

Fix colors for bad and good args

pull/823/head
Heinz N. Gies 9 년 전
부모
커밋
ffe84add67
1개의 변경된 파일3개의 추가작업 그리고 2개의 파일을 삭제
  1. +3
    -2
      src/rebar_dialyzer_format.erl

+ 3
- 2
src/rebar_dialyzer_format.erl 파일 보기

@ -431,10 +431,11 @@ bad_pat(P) ->
bad_arg(N, Args) ->
color_arg(N, g, Args).
color_arg(N, r, Args).
good_arg(N, Args) ->
color_arg(N, r, Args).
color_arg(N, g, Args).
color_arg(N, C, Args) when is_integer(N) ->
color_arg([N], C, Args);
color_arg(Ns, C, Args) ->

불러오는 중...
취소
저장