diff --git a/spring-webflow/src/main/java/org/springframework/webflow/execution/Action.java b/spring-webflow/src/main/java/org/springframework/webflow/execution/Action.java
index 25b490fa..3db2d3a7 100644
--- a/spring-webflow/src/main/java/org/springframework/webflow/execution/Action.java
+++ b/spring-webflow/src/main/java/org/springframework/webflow/execution/Action.java
@@ -69,8 +69,8 @@ public interface Action {
*
* - Attributes set in {@link RequestContext#getRequestScope() request scope} exist for the life of the currently
* executing request only.
- *
- Attributes set in {@link RequestContext#getFlashScope() flash scope} exist until the next external user event
- * is signaled. That time includes the current request plus any redirect or additional refreshes to the next view.
+ *
- Attributes set in {@link RequestContext#getFlashScope() flash scope} exist until after view rendering is
+ * completed. That time includes the current request plus any redirect required for the view render to complete.
*
- Attributes set in {@link RequestContext#getFlowScope() flow scope} exist for the life of the flow session and
* will be cleaned up automatically when the flow session ends.
*
- Attributes set in {@link RequestContext#getConversationScope() conversation scope} exist for the life of the
@@ -98,4 +98,4 @@ public interface Action {
* or be handled by the current state of the calling flow execution.
*/
public Event execute(RequestContext context) throws Exception;
-}
+}