Merge pull request #1781 from levinotik/documentation-fixes

=doc Fix misspelled method reference in FSM
This commit is contained in:
Björn Antonsson 2013-10-21 04:35:12 -07:00
commit d2644876e5

View file

@ -58,7 +58,7 @@ The basic strategy is to declare the actor, mixing in the :class:`FSM` trait
and specifying the possible states and data values as type parameters. Within and specifying the possible states and data values as type parameters. Within
the body of the actor a DSL is used for declaring the state machine: the body of the actor a DSL is used for declaring the state machine:
* :meth:`startsWith` defines the initial state and initial data * :meth:`startWith` defines the initial state and initial data
* then there is one :meth:`when(<state>) { ... }` declaration per state to be * then there is one :meth:`when(<state>) { ... }` declaration per state to be
handled (could potentially be multiple ones, the passed handled (could potentially be multiple ones, the passed
:class:`PartialFunction` will be concatenated using :meth:`orElse`) :class:`PartialFunction` will be concatenated using :meth:`orElse`)