You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@struts.apache.org by cr...@apache.org on 2001/04/19 23:25:05 UTC

cvs commit: jakarta-struts/doc struts-logic.xml

craigmcc    01/04/19 14:25:05

  Modified:    doc      struts-logic.xml
  Log:
  Correct a usage example on the iterate tag.
  
  PR: Bugzilla #1184
  Submitted by:	dmiser@wi.rr.com
  
  Revision  Changes    Path
  1.5       +1 -1      jakarta-struts/doc/struts-logic.xml
  
  Index: struts-logic.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-struts/doc/struts-logic.xml,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- struts-logic.xml	2001/04/18 22:04:59	1.4
  +++ struts-logic.xml	2001/04/19 21:25:04	1.5
  @@ -427,7 +427,7 @@
       <p>So, if you wish to iterate over the values of a Hashtable, you would
       implement code like the following:</p>
       <code>
  -    &lt;logic:iterate id="element" name="myhashtable"/&gt;<br/>
  +    &lt;logic:iterate id="element" name="myhashtable"&gt;<br/>
         Next element is &lt;bean:write name="element" property="value"/&gt;<br/>
       &lt;/logic:iterate&gt;
       </code>