summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorDave Smith <dizzyd@dizzyd.com>2010-01-30 09:48:28 -0700
committerDave Smith <dizzyd@dizzyd.com>2010-01-30 09:48:28 -0700
commit12420ee43c3cd589a78232631961c7c03ca3c89f (patch)
tree99adb6d75f1462a7f9c2b21812582cebd11801cd /src
parent7bcbe026d4b67f16a2e3e5c4f4b7835bc9766573 (diff)
Fix typo; courtesy of OJ Reeves
Diffstat (limited to 'src')
-rw-r--r--src/rebar_otp_app.erl2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rebar_otp_app.erl b/src/rebar_otp_app.erl
index 6b330cf..136c5cb 100644
--- a/src/rebar_otp_app.erl
+++ b/src/rebar_otp_app.erl
@@ -151,7 +151,7 @@ validate_modules(AppName, Mods) ->
ok;
MissingMods ->
Msg2 = lists:flatten([io_lib:format("\t* ~p\n", [M]) || M <- MissingMods]),
- ?ERROR("On or more .beam files exist that are not listed in ~p.app:\n~s",
+ ?ERROR("One or more .beam files exist that are not listed in ~p.app:\n~s",
[AppName, Msg2]),
?FAIL
end.