diff options
author | Byaruhanga Franklin <byaruhaf@rovcos.com> | 2015-10-14 04:13:59 +0300 |
---|---|---|
committer | Byaruhanga Franklin <byaruhaf@rovcos.com> | 2015-10-14 04:13:59 +0300 |
commit | 2e2a37baf67b5bfa89d34f409ce658039508caad (patch) | |
tree | 871fc3f8e1f8f32b72700cf0d98dd53c82be7e61 /src | |
parent | d63d285e8b924803d691ce1da5379cda53075fa2 (diff) |
Added comments to explain the utf8 symbols Binary
Diffstat (limited to 'src')
-rw-r--r-- | src/rebar_prv_deps_tree.erl | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/rebar_prv_deps_tree.erl b/src/rebar_prv_deps_tree.erl index b8b5094..cefa60a 100644 --- a/src/rebar_prv_deps_tree.erl +++ b/src/rebar_prv_deps_tree.erl @@ -66,13 +66,13 @@ print_children(_, [], _, _) -> print_children(Prefix, [{Name, Vsn, Source} | Rest], Dict, Verbose) -> Prefix1 = case Rest of [] -> - io:format("~ts~ts", [Prefix, <<226,148,148,226,148,128,32>>]), + io:format("~ts~ts", [Prefix, <<226,148,148,226,148,128,32>>]), %Binary for └─ utf8% [Prefix, " "]; _ -> - io:format("~ts~ts", [Prefix, <<226,148,156,226,148,128,32>>]), + io:format("~ts~ts", [Prefix, <<226,148,156,226,148,128,32>>]), %Binary for ├─ utf8% [Prefix, "│ "] end, - io:format("~ts~ts~ts (~ts)~n", [Name, <<226,148,128>>, Vsn, type(Source, Verbose)]), + io:format("~ts~ts~ts (~ts)~n", [Name, <<226,148,128>>, Vsn, type(Source, Verbose)]), %Binary for ─ utf8% case dict:find(Name, Dict) of {ok, Children} -> print_children(Prefix1, lists:keysort(1, Children), Dict, Verbose), |