diff options
Diffstat (limited to 'src/gen_mod.erl')
-rw-r--r-- | src/gen_mod.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gen_mod.erl b/src/gen_mod.erl index 1d46908c0..eab90a790 100644 --- a/src/gen_mod.erl +++ b/src/gen_mod.erl @@ -56,7 +56,7 @@ -callback start(binary(), opts()) -> ok | {ok, pid()} | {error, term()}. -callback stop(binary()) -> any(). --callback reload(binary(), opts(), opts()) -> ok | {ok, pid()}. +-callback reload(binary(), opts(), opts()) -> ok | {ok, pid()} | {error, term()}. -callback mod_opt_type(atom()) -> econf:validator(). -callback mod_options(binary()) -> [{atom(), term()} | atom()]. -callback depends(binary(), opts()) -> [{module(), hard | soft}]. |