=doc Fix misspelled method reference in FSM

This commit is contained in:
Levi Notik 2013-10-16 11:33:31 -04:00
parent 981bce5dd0
commit 1dec335ad2

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
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
handled (could potentially be multiple ones, the passed
:class:`PartialFunction` will be concatenated using :meth:`orElse`)