Procházet zdrojové kódy

ft:bug fix

master
lijie před 2 roky
rodič
revize
2f59049714
1 změnil soubory, kde provedl 5 přidání a 5 odebrání
  1. +5
    -5
      src/eFmt.erl

+ 5
- 5
src/eFmt.erl Zobrazit soubor

@ -158,15 +158,15 @@ write(Term, Depth, IsPretty) ->
end.
splitPart(Term)when is_map(Term) ->
<<",...}">>;
<<"...}">>;
splitPart(Term)when is_tuple(Term) ->
<<",...}">>;
<<"...}">>;
splitPart(Term)when is_list(Term) ->
<<",...]">>;
<<"...]">>;
splitPart(Term) when is_binary(Term) ->
<<",...>>">>;
<<"...>>">>;
splitPart(_Term) ->
<<",...">>.
<<"...">>.
-spec write(Term :: term(), Depth :: depth(), Encoding :: encoding(), CharsLimit :: charsLimit()) -> chars().
write(Term, Depth, Encoding, CharsLimit) ->

Načítá se…
Zrušit
Uložit