summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSimon MacMullen <simon@rabbitmq.com>2013-03-11 16:59:29 +0000
committerSimon MacMullen <simon@rabbitmq.com>2013-03-11 16:59:29 +0000
commit129eba4232074a57c31ab644c14936f800a0cfff (patch)
tree6eb23cb98570489da4f9d4f5b627fe3a0625e827
parent734b61abe4f5b4f281034ac00672003909a36569 (diff)
downloadrabbitmq-server-git-129eba4232074a57c31ab644c14936f800a0cfff.tar.gz
Cosmetic
-rw-r--r--src/rabbit_exchange_decorator.erl4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/rabbit_exchange_decorator.erl b/src/rabbit_exchange_decorator.erl
index 05077f03e1..414f9c60d3 100644
--- a/src/rabbit_exchange_decorator.erl
+++ b/src/rabbit_exchange_decorator.erl
@@ -54,14 +54,14 @@
[rabbit_types:binding()]) -> 'ok'.
%% called when the policy attached to this exchange changes.
--callback policy_changed (
+-callback policy_changed(
serial(), rabbit_types:exchange(), rabbit_types:exchange()) -> 'ok'.
%% called after exchange routing
%% return value is a list of queues to be added to the list of
%% destination queues. decorators must register separately for
%% this callback using exchange_decorator_route.
--callback route ( rabbit_types:exchange(), rabbit_types:delivery()) ->
+-callback route(rabbit_types:exchange(), rabbit_types:delivery()) ->
[rabbit_amqqueue:name()].
-else.