Fixing typo

This commit is contained in:
Viktor Klang 2012-02-20 22:02:15 +01:00
parent 7c43d049a9
commit a2a9996ee6
2 changed files with 4 additions and 2 deletions

View file

@ -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
-------------------

View file

@ -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
-------------