summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSimon MacMullen <simon@rabbitmq.com>2012-09-17 15:30:25 +0100
committerSimon MacMullen <simon@rabbitmq.com>2012-09-17 15:30:25 +0100
commit9261402fce87d6f5e98ae862723f9e5949c7566a (patch)
treeb7278eb7da460718b5dff26b8a28cd3aae2ff5c5
parent709f2fdd04a9c4c84366c7ea9452f4a0073f6fd2 (diff)
downloadrabbitmq-server-9261402fce87d6f5e98ae862723f9e5949c7566a.tar.gz
Typo
-rw-r--r--src/rabbit_amqqueue_process.erl2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rabbit_amqqueue_process.erl b/src/rabbit_amqqueue_process.erl
index 2c3cd64d..c3d717fb 100644
--- a/src/rabbit_amqqueue_process.erl
+++ b/src/rabbit_amqqueue_process.erl
@@ -712,7 +712,7 @@ message_properties(Message, Confirm, #q{ttl = TTL}) ->
calculate_msg_expiry(#basic_message{content = Content}, TTL) ->
#content{properties = Props} =
rabbit_binary_parser:ensure_content_decoded(Content),
- %% We assert that the expiration must be valid - we check in che channel.
+ %% We assert that the expiration must be valid - we check in the channel.
{ok, MsgTTL} = rabbit_basic:parse_expiration(Props),
case lists:min([TTL, MsgTTL]) of
undefined -> undefined;