diff --git a/core/src/main/java/org/apache/struts2/components/IteratorComponent.java b/core/src/main/java/org/apache/struts2/components/IteratorComponent.java index ace0284c0..db40d1c78 100644 --- a/core/src/main/java/org/apache/struts2/components/IteratorComponent.java +++ b/core/src/main/java/org/apache/struts2/components/IteratorComponent.java @@ -137,7 +137,7 @@ import com.opensymphony.xwork2.util.ValueStack; * *

The next example iterates over a an action collection and passes every iterator value to another action. The * trick here lies in the use of the '[0]' operator. It takes the current iterator value and passes it on to the edit - * action. Using the '[0]' operator has the same effect as using >s:property />. (The latter, however, does not + * action. Using the '[0]' operator has the same effect as using <s:property />. (The latter, however, does not * work from inside the param tag).

* *