summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMatthew Sackman <matthew@rabbitmq.com>2011-02-11 15:23:37 +0000
committerMatthew Sackman <matthew@rabbitmq.com>2011-02-11 15:23:37 +0000
commit99f60e689edfcfb63f30d1b426f82a70ddd0160e (patch)
tree367c100a464ff82c30b4b1bf0a15215e68852a4f /src
parent5a6064f8baaab464e3877d22a0f2cc66cb9371cd (diff)
downloadrabbitmq-server-git-99f60e689edfcfb63f30d1b426f82a70ddd0160e.tar.gz
correct comment
Diffstat (limited to 'src')
-rw-r--r--src/rabbit_channel.erl2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rabbit_channel.erl b/src/rabbit_channel.erl
index 7d47eecdf8..df56ee49ad 100644
--- a/src/rabbit_channel.erl
+++ b/src/rabbit_channel.erl
@@ -558,7 +558,7 @@ handle_method(_Method, _, State = #ch{state = closing}) ->
handle_method(#'channel.close'{}, _, State = #ch{reader_pid = ReaderPid}) ->
ReaderPid ! {channel_closing, self()},
%% no error, so rollback_and_notify should be 'ok'. Do in parallel
- %% with the reader picking up our message and running our Fun.
+ %% with the reader picking up our message and casting back to us.
{ok, State1} = rollback_and_notify(State),
{noreply, State1};