You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@struts.apache.org by jh...@apache.org on 2007/07/03 20:56:53 UTC

svn commit: r552948 - /struts/struts2/trunk/core/src/main/java/org/apache/struts2/interceptor/MessageStoreInterceptor.java

Author: jholmes
Date: Tue Jul  3 11:56:53 2007
New Revision: 552948

URL: http://svn.apache.org/viewvc?view=rev&rev=552948
Log:
Fixed broken > in code sample.

Modified:
    struts/struts2/trunk/core/src/main/java/org/apache/struts2/interceptor/MessageStoreInterceptor.java

Modified: struts/struts2/trunk/core/src/main/java/org/apache/struts2/interceptor/MessageStoreInterceptor.java
URL: http://svn.apache.org/viewvc/struts/struts2/trunk/core/src/main/java/org/apache/struts2/interceptor/MessageStoreInterceptor.java?view=diff&rev=552948&r1=552947&r2=552948
==============================================================================
--- struts/struts2/trunk/core/src/main/java/org/apache/struts2/interceptor/MessageStoreInterceptor.java (original)
+++ struts/struts2/trunk/core/src/main/java/org/apache/struts2/interceptor/MessageStoreInterceptor.java Tue Jul  3 11:56:53 2007
@@ -36,9 +36,9 @@
 /**
  * <!-- START SNIPPET: description -->
  *
- * An interceptor to store {@link ValidationAware} action's messages / errors and field errors into
- * Http Session, such that it will be retrieveable at a later stage. This allows the action's message /
- * errors and field errors to be available longer that just the particular http request.
+ * An interceptor to store a {@link ValidationAware} action's messages / errors and field errors into
+ * HTTP Session, such that it will be retrieveable at a later stage. This allows the action's message /
+ * errors and field errors to be available longer that just the particular HTTP request.
  *
  * <p/>
  *
@@ -61,7 +61,7 @@
  * <pre>
  *   &lt;action name="submitApplication" ...&gt;
  *      &lt;interceptor-ref name="store"&gt;
- *         &lt;param name="operationMode"&gtl;STORE&lt;/param&gt;
+ *         &lt;param name="operationMode"&gt;STORE&lt;/param&gt;
  *      &lt;/interceptor-ref&gt;
  *      &lt;interceptor-ref name="defaultStack" /&gt;
  *      ....
@@ -128,8 +128,8 @@
  * <!-- START SNIPPET: exampleDescription -->
  *
  * With the example above, 'submitApplication.action' will have the action messages / errors / field errors stored
- * in the Http Session. Later when needed, (in this case, when 'applicationFailed.action' is fired, it
- * will get the action messages / errors / field errors stored in the Http Session and put them back into
+ * in the HTTP Session. Later when needed, (in this case, when 'applicationFailed.action' is fired, it
+ * will get the action messages / errors / field errors stored in the HTTP Session and put them back into
  * the action.
  *
  * <!-- END SNIPPET: exampleDescription -->