Author: davenewton Date: Fri Nov 16 09:21:05 2007 New Revision: 595746 URL: http://svn.apache.org/viewvc?rev=595746&view=rev Log: JavaDoc spelling and grammar ;)
Modified: struts/struts2/trunk/core/src/main/java/org/apache/struts2/components/URL.java Modified: struts/struts2/trunk/core/src/main/java/org/apache/struts2/components/URL.java URL: http://svn.apache.org/viewvc/struts/struts2/trunk/core/src/main/java/org/apache/struts2/components/URL.java?rev=595746&r1=595745&r2=595746&view=diff ============================================================================== --- struts/struts2/trunk/core/src/main/java/org/apache/struts2/components/URL.java (original) +++ struts/struts2/trunk/core/src/main/java/org/apache/struts2/components/URL.java Fri Nov 16 09:21:05 2007 @@ -55,12 +55,12 @@ * ampersand escaping.</p> * * <b>NOTE:</b> - * <p>When includeParams is 'all' or 'get', the parameter defined in <param> tag will take - * precedence and will not be overriden if they exists in the parameter submitted. For + * <p>When includeParams is 'all' or 'get', the parameter defined in a <param> + * tag will take precedence over any params included due to the includeParams attribute. For * example, in Example 3 below, if there is a id parameter in the url where the page this * tag is included like http://<host>:<port>/<context>/editUser.action?id=3333&name=John * the generated url will be http://<host>:<port>/<context>/editUser.action?id=22&name=John - * cause the parameter defined in the param tag will take precedence.</p> + * because the parameter defined in the param tag will take precedence.</p> * * <!-- END SNIPPET: javadoc --> *