summaryrefslogtreecommitdiff
path: root/src/rebar_dir.erl
diff options
context:
space:
mode:
authorGuilherme Andrade <g@gandrade.net>2019-08-15 16:48:25 +0100
committerGuilherme Andrade <g@gandrade.net>2019-08-31 18:15:13 +0100
commit4033e65aaa53dc6f46e9d1d7fcbfee0dcccac487 (patch)
tree69449e1c5082968d0f32f654a8eed46ffaca796e /src/rebar_dir.erl
parent542b93a8526873dd3bbc0440aad3e7d3093ac4d8 (diff)
Fix formatting of literal expression within comment
Diffstat (limited to 'src/rebar_dir.erl')
-rw-r--r--src/rebar_dir.erl2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rebar_dir.erl b/src/rebar_dir.erl
index aac6210..3190425 100644
--- a/src/rebar_dir.erl
+++ b/src/rebar_dir.erl
@@ -45,7 +45,7 @@ profile_dir(Opts, Profiles) ->
["global" | _] -> {?MODULE:global_cache_dir(Opts), [""]};
["bootstrap", "default"] -> {rebar_opts:get(Opts, base_dir, ?DEFAULT_BASE_DIR), ["default"]};
["default"] -> {rebar_opts:get(Opts, base_dir, ?DEFAULT_BASE_DIR), ["default"]};
- %% drop `default` from the profile dir if it's implicit and reverse order
+ %% drop `default' from the profile dir if it's implicit and reverse order
%% of profiles to match order passed to `as`
["default"|Rest] -> {rebar_opts:get(Opts, base_dir, ?DEFAULT_BASE_DIR), Rest}
end,