summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
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};