Skip to content

Commit c57d2f0

Browse files
kianmengkostis
authored andcommitted
Fix typos
1 parent 5e667f6 commit c57d2f0

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

priv/templates/lib/structures.tpl

+1-1
Original file line numberDiff line numberDiff line change
@@ -522,7 +522,7 @@ new_type_object(ErlNifEnv* env, int argc, const ERL_NIF_TERM argv[])
522522
return enif_make_atom(env, "undef");
523523
error:
524524
return enif_make_badarg(env);
525-
/* supress warnings */
525+
/* suppress warnings */
526526
type_holder++;
527527
retval++;
528528
}

test/nifty_lib_test.erl

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111

1212
-type mystring() :: [1..255].
1313

14-
%% auxilary functions
14+
%% auxiliary functions
1515
-spec cstr_list_comp(mystring()) -> boolean().
1616
cstr_list_comp(Str) ->
1717
CStr = nifty:list_to_cstr(Str),

test/nifty_test.erl

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111

1212
-include_lib("eunit/include/eunit.hrl").
1313

14-
%% supress warning for test/0, a generated function automatically exported
14+
%% suppress warning for test/0, a generated function automatically exported
1515
-spec test() -> term().
1616

1717
-define(TIMEOUT, 600).

travis/fix_exports.sh

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,14 @@ if grep -q "nowarn_export_all" _build/default/lib/erlware_commons/src/ec_semver_
22
then
33
echo "ec_semver_parser.erl ... ok"
44
else
5-
echo "Supress export_all warning in ec_semver_parser.erl"
5+
echo "Suppress export_all warning in ec_semver_parser.erl"
66
sed -i "s/-compile(export_all)\./-compile(export_all)\.\n-compile(nowarn_export_all)\./g" _build/default/lib/erlware_commons/src/ec_semver_parser.erl
77
fi
88

99
if grep -q "nowarn_export_all" _build/default/lib/relx/src/rlx_goal.erl
1010
then
1111
echo "rlx_goal.erl ... ok"
1212
else
13-
echo "Supress export_all warning in rlx_goal.erl"
13+
echo "Suppress export_all warning in rlx_goal.erl"
1414
sed -i "s/-compile(export_all)\./-compile(export_all)\.\n-compile(nowarn_export_all)\./g" _build/default/lib/relx/src/rlx_goal.erl
1515
fi

0 commit comments

Comments
 (0)