From a2a9996ee6db5bc7f9f2819d60f746c2edea37c7 Mon Sep 17 00:00:00 2001 From: Viktor Klang Date: Mon, 20 Feb 2012 22:02:15 +0100 Subject: [PATCH] Fixing typo --- akka-docs/java/typed-actors.rst | 3 ++- akka-docs/scala/typed-actors.rst | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) 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 -------------