diff options
author | Tristan Sloughter <t@crashfast.com> | 2015-11-12 19:16:08 -0600 |
---|---|---|
committer | Tristan Sloughter <t@crashfast.com> | 2015-11-12 19:16:08 -0600 |
commit | 9184a42ef32f1ed06f9f2e3c8c0d4e949cc0c579 (patch) | |
tree | 0f54cbc92d0b6134de3b9f1c4461fec4e9ac2fbe /src | |
parent | d2cd2710b11d9bc4af5055f8bb614d41fb5a3a42 (diff) |
fix typo of guarantee. h/t evan
Diffstat (limited to 'src')
-rw-r--r-- | src/rebar_packages.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rebar_packages.erl b/src/rebar_packages.erl index 7be3372..99391ed 100644 --- a/src/rebar_packages.erl +++ b/src/rebar_packages.erl @@ -138,7 +138,7 @@ handle_single_vsn(Dep, Vsn, Constraint) -> {ok, Vsn}; false -> ?WARN("Only existing version of ~s is ~s which does not match constraint ~~> ~s. " - "Using anyway, but it is not guarenteed to work.", [Dep, Vsn, Constraint]), + "Using anyway, but it is not guaranteed to work.", [Dep, Vsn, Constraint]), {ok, Vsn} end. |