summaryrefslogtreecommitdiff
path: root/src
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
commit755c6a293ca14243860e675cada59faf8143475e (patch)
treeb7278eb7da460718b5dff26b8a28cd3aae2ff5c5 /src
parent4a0afe5bc30f15a531a98dd1a25973587a4a9bce (diff)
downloadrabbitmq-server-git-755c6a293ca14243860e675cada59faf8143475e.tar.gz
Typo
Diffstat (limited to 'src')
-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 2c3cd64d98..c3d717fb16 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;