You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@struts.apache.org by mc...@apache.org on 2013/04/17 13:00:28 UTC

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

Author: mcucchiara
Date: Wed Apr 17 11:00:27 2013
New Revision: 1468832

URL: http://svn.apache.org/r1468832
Log:
Corrected typo

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=1468832&r1=1468831&r2=1468832&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 Wed Apr 17 11:00:27 2013
@@ -21,19 +21,17 @@
 
 package org.apache.struts2.components;
 
-import java.io.Writer;
-
-import javax.servlet.http.HttpServletRequest;
-import javax.servlet.http.HttpServletResponse;
-
-import org.apache.struts2.StrutsConstants;
-import org.apache.struts2.views.annotations.StrutsTag;
-import org.apache.struts2.views.annotations.StrutsTagAttribute;
-
 import com.opensymphony.xwork2.inject.Inject;
 import com.opensymphony.xwork2.util.ValueStack;
 import com.opensymphony.xwork2.util.logging.Logger;
 import com.opensymphony.xwork2.util.logging.LoggerFactory;
+import org.apache.struts2.StrutsConstants;
+import org.apache.struts2.views.annotations.StrutsTag;
+import org.apache.struts2.views.annotations.StrutsTagAttribute;
+
+import javax.servlet.http.HttpServletRequest;
+import javax.servlet.http.HttpServletResponse;
+import java.io.Writer;
 
 /**
  * <!-- START SNIPPET: javadoc -->
@@ -64,7 +62,7 @@ import com.opensymphony.xwork2.util.logg
  * <!-- START SNIPPET: params -->
  *
  * <ul>
- *      <li>action (String) - (value or action choose either one, if both exist value takes precedence) action's name (alias) <li>
+ *      <li>action (String) - (value or action choose either one, if both exist value takes precedence) action's name (alias) </li>
  *      <li>value (String) - (value or action choose either one, if both exist value takes precedence) the url itself</li>
  *      <li>scheme (String) - http scheme (http, https) defaults to the scheme this request is in</li>
  *      <li>namespace - action's namespace</li>