diff --git a/spring-webflow-reference/src/upgrade-guide.xml b/spring-webflow-reference/src/upgrade-guide.xml
index 3b6c3b77..caf28ceb 100644
--- a/spring-webflow-reference/src/upgrade-guide.xml
+++ b/spring-webflow-reference/src/upgrade-guide.xml
@@ -140,9 +140,9 @@ java org.springframework.webflow.engine.model.builder.xml.WebFlowUpgrader flowTo
org.springframework.webflow.executor.mvc.FlowController and is now org.springframework.webflow.mvc.servlet.FlowController for Servlet MVC requests.
The portlet flow controller org.springframework.webflow.executor.mvc.PortletFlowController has been replaced by a flow handler adapter available at org.springframework.webflow.mvc.portlet.FlowHandlerAdapter.
- It will need to be updated in the bean definitions.
+ They will need to be updated in the bean definitions.
WebFlow1FlowUrlHandler is available.
+ In order to maintain comparability with existing views and URL structures a WebFlow1FlowUrlHandler is available.
FormAction methods, mainly: setupForm, bind and bindAndValidate.
+ Web Flow 1.0 required Spring MVC based flows to manually call FormAction methods, mainly: setupForm, bind and bindAndValidate.
Web Flow 2.0 now supports automatic setup, binding and validation via the model attribute for view-states.
Please see the Binding to a Model section for details.