diff --git a/spring-webflow/docs/reference/src/flow-executor.xml b/spring-webflow/docs/reference/src/flow-executor.xml
index ca18c124..4d3b2445 100644
--- a/spring-webflow/docs/reference/src/flow-executor.xml
+++ b/spring-webflow/docs/reference/src/flow-executor.xml
@@ -567,9 +567,9 @@
- The artifacts defined faces-config.xml and managed by the JSF provider use Spring to locate
- the Web Flow system. A Spring Web Application Context is bootstrapped using a ContextLoaderListener
- in the web.xml deployment descriptor:
+ The artifacts defined faces-config.xml use Spring to locate the Web Flow system.
+ This requires a Spring Web Application Context to be bootstrapped using a ContextLoaderListener in
+ the web.xml deployment descriptor:
<context-param>
@@ -623,14 +623,16 @@
<h:commandLink value="Go" action="flowId:myflow"/>
- The command link above says launch 'myflow' when clicked.
- By default, an action outcome prefixed with flowId: will treated as a flow definition identifier.
- The FlowNavigationHandler will launch a new execution of that flow definition.
-
-
- The flow id prefix respected by the FlowNavigationHandler is configurable. See the API documentation for
- more information.
+ The command link above says launch 'myflow' when clicked. 'myflow' is expected
+ to be a valid id of a flow definition registered in the configured registry.
+
+
+ By default, an action outcome prefixed with flowId: will be treated as a flow definition identifier.
+ The flow id prefix respected by the FlowNavigationHandler is configurable. See the API documentation for
+ more information.
+
+
Launching a flow execution - normal HTML anchor