diff --git a/spring-webflow/src/main/java/org/springframework/webflow/mvc/portlet/FlowHandler.java b/spring-webflow/src/main/java/org/springframework/webflow/mvc/portlet/FlowHandler.java
index 768a79ad..bf413b48 100644
--- a/spring-webflow/src/main/java/org/springframework/webflow/mvc/portlet/FlowHandler.java
+++ b/spring-webflow/src/main/java/org/springframework/webflow/mvc/portlet/FlowHandler.java
@@ -31,7 +31,7 @@ import org.springframework.webflow.execution.FlowExecutionOutcome;
*
* - Launch executions of that flow with data in the execution input map
*
- Handle outcomes reached by that flow in a custom manner
- *
- Handle un-handled exceptions dealing with that flow in a custom manner
+ *
- Handle unhandled exceptions dealing with that flow in a custom manner
*
* Such a handler can be visually thought of as a "flow reference" on a Garrett IA diagram. It holds a reference to the
* flow id to launch, how to provision its input, how to process its outcomes, and how to handle uncaught exceptions.
diff --git a/spring-webflow/src/main/java/org/springframework/webflow/mvc/servlet/FlowHandler.java b/spring-webflow/src/main/java/org/springframework/webflow/mvc/servlet/FlowHandler.java
index 2fba7a79..d9a831c8 100644
--- a/spring-webflow/src/main/java/org/springframework/webflow/mvc/servlet/FlowHandler.java
+++ b/spring-webflow/src/main/java/org/springframework/webflow/mvc/servlet/FlowHandler.java
@@ -23,11 +23,12 @@ import org.springframework.webflow.core.collection.MutableAttributeMap;
import org.springframework.webflow.execution.FlowExecutionOutcome;
/**
- * A controller helper used for customizing access to a single flow definition. This helper is used to:
+ * A controller helper used for customizing access to a single flow definition in a Servlet enviroment. This
+ * helper is used to:
*
* - Launch executions of that flow with data in the execution input map
- *
- Handle outcomes reached by that flow in a custom manner.
- *
- Handle un-handled exceptions dealing with that flow in a custom manner.
+ *
- Handle outcomes reached by that flow in a custom manner
+ *
- Handle unhandled exceptions dealing with that flow in a custom manner.
*
* Such a handler can be visually thought of as a "flow reference" on a Garrett IA diagram. It holds a reference to the
* flow id to launch, how to provision its input, how to process its outcomes, and how to handle uncaught exceptions.