From 1dec335ad2b56644eca8059e55c7737e2d96fdc7 Mon Sep 17 00:00:00 2001 From: Levi Notik Date: Wed, 16 Oct 2013 11:33:31 -0400 Subject: [PATCH] =doc Fix misspelled method reference in FSM --- akka-docs/rst/scala/fsm.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/akka-docs/rst/scala/fsm.rst b/akka-docs/rst/scala/fsm.rst index f30c4f36dc..2d46ba5301 100644 --- a/akka-docs/rst/scala/fsm.rst +++ b/akka-docs/rst/scala/fsm.rst @@ -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() { ... }` declaration per state to be handled (could potentially be multiple ones, the passed :class:`PartialFunction` will be concatenated using :meth:`orElse`)