From c9226c7d0a27f842ce36baeed4639335077b3943 Mon Sep 17 00:00:00 2001 From: Arnout Engelen Date: Sun, 24 Jan 2016 13:49:15 +0100 Subject: [PATCH] =doc fix comment for safe-shutdown-example-bad The `PoisonPill` of course isn't stashed - probably a copy-paste-leftover from the 'good' example. --- .../rst/scala/code/docs/persistence/PersistenceDocSpec.scala | 1 - 1 file changed, 1 deletion(-) diff --git a/akka-docs/rst/scala/code/docs/persistence/PersistenceDocSpec.scala b/akka-docs/rst/scala/code/docs/persistence/PersistenceDocSpec.scala index 186d3a7949..0c9dd375c2 100644 --- a/akka-docs/rst/scala/code/docs/persistence/PersistenceDocSpec.scala +++ b/akka-docs/rst/scala/code/docs/persistence/PersistenceDocSpec.scala @@ -392,7 +392,6 @@ object PersistenceDocSpec { // order of received messages: // a // # b arrives at mailbox, stashing; internal-stash = [b] - // # PoisonPill arrives at mailbox, stashing; internal-stash = [b, Shutdown] // PoisonPill is an AutoReceivedMessage, is handled automatically // !! stop !! // Actor is stopped without handling `b` nor the `a` handler!