summaryrefslogtreecommitdiff
path: root/src/rebar_ct.erl
diff options
context:
space:
mode:
authorYAMAMOTO Takashi <yamt@netbsd.org>2014-05-30 14:38:39 +0900
committerYAMAMOTO Takashi <yamt@netbsd.org>2014-05-30 14:38:39 +0900
commitad588a70b736162626cbe75671ca2ab785d85428 (patch)
tree95faf770eb199bd6d6b6a7020a985a6f3d9b7df9 /src/rebar_ct.erl
parent9713dafcb509eb39e9dddd8bba2d9591c77e7455 (diff)
fix double "the" in a comment
noted by @tuncer
Diffstat (limited to 'src/rebar_ct.erl')
-rw-r--r--src/rebar_ct.erl2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rebar_ct.erl b/src/rebar_ct.erl
index b96bb99..4a6f11e 100644
--- a/src/rebar_ct.erl
+++ b/src/rebar_ct.erl
@@ -291,7 +291,7 @@ collect_glob(Cwd, Glob) ->
CwdParts = filename:split(Cwd),
filelib:fold_files(Cwd, Glob, true, fun(F, Acc) ->
%% Ignore any specs under the deps/ directory. Do this pulling
- %% the dirname off the the F and then splitting it into a list.
+ %% the dirname off the F and then splitting it into a list.
Parts = filename:split(filename:dirname(F)),
Parts2 = remove_common_prefix(Parts, CwdParts),
case lists:member("deps", Parts2) of