Author: jholmes Date: Thu Jul 19 06:44:03 2007 New Revision: 557620 URL: http://svn.apache.org/viewvc?view=rev&rev=557620 Log: More doc fixes.
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?view=diff&rev=557620&r1=557619&r2=557620 ============================================================================== --- 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 Thu Jul 19 06:44:03 2007 @@ -47,16 +47,16 @@ * * <p>This tag is used to create a URL.</p> * - * <p>You can use the "param" tag inside the body to provide + * <p>You can use the <param> tag inside the body to provide * additional request parameters. If the value of a param is an Array or * an Iterable all the values will be added to the URL.</p> * * <b>NOTE:</b> - * <p>When includeParams is 'all' or 'get', the parameter defined in param tag will take + * <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 * 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 + * 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> * * <!-- END SNIPPET: javadoc -->