=doc#15830 fixed the mismatch between akka-docs and akka API

This commit is contained in:
Piyush Mishra 2014-09-09 15:25:29 +05:30
parent d0684c2f7e
commit 89ac86bdea

View file

@ -32,7 +32,7 @@ Creating Actors
Defining an Actor class
-----------------------
Actor classes are implemented by extending the Actor class and implementing the
Actors are implemented by extending the :class:`Actor` base trait and implementing the
:meth:`receive` method. The :meth:`receive` method should define a series of case
statements (which has the type ``PartialFunction[Any, Unit]``) that defines
which messages your Actor can handle, using standard Scala pattern matching,