diff options
author | Holger Weiss <holger@zedat.fu-berlin.de> | 2014-08-26 01:04:15 +0200 |
---|---|---|
committer | Holger Weiss <holger@zedat.fu-berlin.de> | 2014-08-26 01:04:15 +0200 |
commit | f1ad6f017b99420f968da1e86b60526fd7b87cdf (patch) | |
tree | e961ab79938f406f589756c7adf51054942e170b | |
parent | Merge pull request #287 from vesvalo/master (diff) |
Fix a comment in ejabberd_hooks
-rw-r--r-- | src/ejabberd_hooks.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ejabberd_hooks.erl b/src/ejabberd_hooks.erl index e1f99eb8..87c26c5e 100644 --- a/src/ejabberd_hooks.erl +++ b/src/ejabberd_hooks.erl @@ -151,7 +151,7 @@ run(Hook, Host, Args) -> %% The arguments passed to the function are: [Val | Args]. %% The result of a call is used as Val for the next call. %% If a call returns 'stop', no more calls are performed and 'stopped' is returned. -%% If a call returns {stopped, NewVal}, no more calls are performed and NewVal is returned. +%% If a call returns {stop, NewVal}, no more calls are performed and NewVal is returned. run_fold(Hook, Val, Args) -> run_fold(Hook, global, Val, Args). |