Dialyzer related cleanups

This commit is contained in:
Kostis Sagonas 2010-10-11 04:36:13 +08:00 committed by Juan Jose Comellas
parent 91143ed4b3
commit 1dd5a75277

View File

@ -285,7 +285,7 @@ arg_spec_type(Type) when is_atom(Type) ->
%% @doc Convert an argument string to its corresponding data type.
-spec to_type(atom(), string()) -> arg_value().
-spec to_type(arg_type(), string()) -> arg_value().
to_type(binary, Arg) ->
list_to_binary(Arg);
to_type(atom, Arg) ->
@ -327,7 +327,7 @@ is_arg_false(Arg) ->
(Arg =:= "0").
-spec is_valid_arg(arg_spec() | arg_type(), string()) -> boolean().
-spec is_valid_arg(arg_spec(), nonempty_string()) -> boolean().
is_valid_arg({Type, _DefaultArg}, Arg) ->
is_valid_arg(Type, Arg);
is_valid_arg(boolean, Arg) ->