summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Watson <watson.timothy@gmail.com>2014-01-14 15:17:00 +0000
committerTim Watson <watson.timothy@gmail.com>2014-01-14 15:17:00 +0000
commitf58b9c95e1c707eb754abd9d468f7bc12de5275c (patch)
tree154ff775c9b2a45cf2fa242def9053bcc8e2a228
parent3ed0daee5ed2452242ef99777e24a447999605bf (diff)
downloadrabbitmq-server-f58b9c95e1c707eb754abd9d468f7bc12de5275c.tar.gz
Cosmetic (ish)
Spelling, and do not shout in comments.
-rw-r--r--src/rabbit_amqqueue.erl2
-rw-r--r--src/rabbit_backing_queue.erl2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/rabbit_amqqueue.erl b/src/rabbit_amqqueue.erl
index 5357492f..24586b7c 100644
--- a/src/rabbit_amqqueue.erl
+++ b/src/rabbit_amqqueue.erl
@@ -196,7 +196,7 @@ recover() ->
DurableQueues = find_durable_queues(),
{ok, BQ} = application:get_env(rabbit, backing_queue_module),
- %% We reply on BQ:start/1 returning the recovery terms in the same
+ %% We rely on BQ:start/1 returning the recovery terms in the same
%% order as the supplied queue names, so that we can zip them together
%% for further processing in recover_durable_queues.
{ok, OrderedRecoveryTerms} =
diff --git a/src/rabbit_backing_queue.erl b/src/rabbit_backing_queue.erl
index 11563a4e..07dc272f 100644
--- a/src/rabbit_backing_queue.erl
+++ b/src/rabbit_backing_queue.erl
@@ -42,7 +42,7 @@
%% backing queue to perform any checking necessary for the consistency
%% of those queues, or initialise any other shared resources.
%%
-%% The list of queue recovery terms returned as {ok, Terms} MUST be given
+%% The list of queue recovery terms returned as {ok, Terms} must be given
%% in the same order as the list of queue names supplied.
%%
-callback start([rabbit_amqqueue:name()]) -> rabbit_types:ok(recovery_terms()).