From 8645eee9bd97897c13695e1d7fbb900eb14ff498 Mon Sep 17 00:00:00 2001 From: Musachy Barroso Date: Thu, 27 Sep 2007 18:48:56 +0000 Subject: [PATCH] WW-2214 wrong tag in docs Patch provided by Wes Wannemacher git-svn-id: https://svn.apache.org/repos/asf/struts/struts2/trunk@580120 13f79535-47bb-0310-9956-ffa450edef68 --- .../java/org/apache/struts2/components/IteratorComponent.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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).

* *