From d6e3e71d5ef9a50826135d441845eebcc144cfbb Mon Sep 17 00:00:00 2001 From: Roland Kuhn Date: Fri, 5 Jul 2013 20:11:51 +0200 Subject: [PATCH] clarify wording of actor termination phase --- akka-docs/rst/java/untyped-actors.rst | 2 +- akka-docs/rst/scala/actors.rst | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/akka-docs/rst/java/untyped-actors.rst b/akka-docs/rst/java/untyped-actors.rst index ef4b2af814..1fc6cf5644 100644 --- a/akka-docs/rst/java/untyped-actors.rst +++ b/akka-docs/rst/java/untyped-actors.rst @@ -590,7 +590,7 @@ depends on the mailbox implementation. Termination of an actor proceeds in two steps: first the actor suspends its mailbox processing and sends a stop command to all its children, then it keeps -processing the termination messages from its children until the last one is +processing the internal termination notifications from its children until the last one is gone, finally terminating itself (invoking :meth:`postStop`, dumping mailbox, publishing :class:`Terminated` on the :ref:`DeathWatch `, telling its supervisor). This procedure ensures that actor system sub-trees terminate diff --git a/akka-docs/rst/scala/actors.rst b/akka-docs/rst/scala/actors.rst index 68ad97f2f7..9c7e44acd8 100644 --- a/akka-docs/rst/scala/actors.rst +++ b/akka-docs/rst/scala/actors.rst @@ -686,7 +686,7 @@ depends on the mailbox implementation. Termination of an actor proceeds in two steps: first the actor suspends its mailbox processing and sends a stop command to all its children, then it keeps -processing the termination messages from its children until the last one is +processing the internal termination notifications from its children until the last one is gone, finally terminating itself (invoking :meth:`postStop`, dumping mailbox, publishing :class:`Terminated` on the :ref:`DeathWatch `, telling its supervisor). This procedure ensures that actor system sub-trees terminate