diff options
author | Tuncer Ayaz <tuncer.ayaz@gmail.com> | 2010-06-23 13:27:48 +0200 |
---|---|---|
committer | Tuncer Ayaz <tuncer.ayaz@gmail.com> | 2010-06-23 13:27:48 +0200 |
commit | 8ebbffafe60a7a48227d55f95afbc4f3049d2339 (patch) | |
tree | b6386ec3fd653348e634f7cd0a54f2609bbd5072 /src | |
parent | 3588c69ad2ca5bab3916f5ada96c511cee81ad93 (diff) |
Correct typo
Diffstat (limited to 'src')
-rw-r--r-- | src/rebar_eunit.erl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/rebar_eunit.erl b/src/rebar_eunit.erl index 7bac46a..a985f86 100644 --- a/src/rebar_eunit.erl +++ b/src/rebar_eunit.erl @@ -55,8 +55,8 @@ %% =================================================================== eunit(Config, AppFile) -> - %% Check for app global parameter; this ia comma-delimited list of apps - %% on which we want to run eunit + %% Check for app global parameter; this is a comma-delimited list + %% of apps on which we want to run eunit TargetApps = [list_to_atom(A) || A <- string:tokens(rebar_config:get_global(app, []), ",")], ThisApp = rebar_app_utils:app_name(AppFile), case lists:member(ThisApp, TargetApps) of |