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 [EMAIL PROTECTED] 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 [EMAIL PROTECTED] 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> * <action name="submitApplication" ...> * <interceptor-ref name="store"> - * <param name="operationMode">l;STORE</param> + * <param name="operationMode">STORE</param> * </interceptor-ref> * <interceptor-ref name="defaultStack" /> * .... @@ -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 -->