You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@struts.apache.org by da...@apache.org on 2007/11/16 18:21:06 UTC

svn commit: r595746 - /struts/struts2/trunk/core/src/main/java/org/apache/struts2/components/URL.java

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 &lt;param&gt; 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 &lt;param&gt; 
+ * 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://&lt;host&gt;:&lt;port&gt;/&lt;context&gt;/editUser.action?id=3333&name=John
  * the generated url will be http://&lt;host&gt;:&lt;port&gt;/&lt;context&gt;/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 -->
  *