Merge pull request #15836 from PiyushMishra/PiyushMishra#15830-there-is-mismatch-between-akka-docs-and-akka-API

#15830 fix the mismatch between akka-docs and akka API
This commit is contained in:
Konrad Malawski 2014-09-15 13:03:36 +02:00
commit 8e3b73566c

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,