diff --git a/akka-docs/java/typed-actors.rst b/akka-docs/java/typed-actors.rst index a54e5767d9..8d5a13b8b2 100644 --- a/akka-docs/java/typed-actors.rst +++ b/akka-docs/java/typed-actors.rst @@ -166,7 +166,8 @@ Receive arbitrary messages If your implementation class of your TypedActor extends ``akka.actor.TypedActor.Receiver``, all messages that are not ``MethodCall``s will be passed into the ``onReceive``-method. -This allows you to react to DeathWatch ``Terminated``-messages and other typed of messages. +This allows you to react to DeathWatch ``Terminated``-messages and other types of messages, +e.g. when interfacing with untyped actors. Lifecycle callbacks ------------------- diff --git a/akka-docs/scala/typed-actors.rst b/akka-docs/scala/typed-actors.rst index 4dee51a920..2d47063664 100644 --- a/akka-docs/scala/typed-actors.rst +++ b/akka-docs/scala/typed-actors.rst @@ -178,7 +178,8 @@ Receive arbitrary messages If your implementation class of your TypedActor extends ``akka.actor.TypedActor.Receiver``, all messages that are not ``MethodCall``s will be passed into the ``onReceive``-method. -This allows you to react to DeathWatch ``Terminated``-messages and other typed of messages. +This allows you to react to DeathWatch ``Terminated``-messages and other types of messages, +e.g. when interfacing with untyped actors. Supercharging -------------