You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@velocity.apache.org by jc...@apache.org on 2001/02/19 12:42:36 UTC

cvs commit: jakarta-velocity/xdocs user-guide.xml

jcastura    01/02/19 03:42:34

  Modified:    xdocs    user-guide.xml
  Log:
  correction to VM example
  
  Revision  Changes    Path
  1.29      +3 -3      jakarta-velocity/xdocs/user-guide.xml
  
  Index: user-guide.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-velocity/xdocs/user-guide.xml,v
  retrieving revision 1.28
  retrieving revision 1.29
  diff -u -r1.28 -r1.29
  --- user-guide.xml	2001/02/09 03:48:54	1.28
  +++ user-guide.xml	2001/02/19 11:42:29	1.29
  @@ -944,9 +944,9 @@
        #set ($bar = "ribonucleic acid")
   
        #if ($foo == $bar)
  -        In this case it's clear they don't equate. So...
  +        In this case it's clear they aren't equivalent. So...
        #else
  -        They do not equate! And this will be the output.
  +        They are not equivalent and this will be the output.
        #end
        ]]></source>
       </p>
  @@ -1220,7 +1220,7 @@
       #set( $greatlakes = ["Superior","Michigan","Huron","Erie","Ontario"] )
       #set( $color = "blue" )
       <table>
  -    #tablerows( $color $names )
  +    #tablerows( $color $greatlakes )
       </table>
       ]]></source>
       </p>