You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@velocity.apache.org by cb...@apache.org on 2016/12/11 10:22:47 UTC

svn commit: r1773555 - /velocity/engine/trunk/velocity-engine-core/src/main/parser/Parser.jjt

Author: cbrisson
Date: Sun Dec 11 10:22:47 2016
New Revision: 1773555

URL: http://svn.apache.org/viewvc?rev=1773555&view=rev
Log:
[engine] fix comment in parser

Modified:
    velocity/engine/trunk/velocity-engine-core/src/main/parser/Parser.jjt

Modified: velocity/engine/trunk/velocity-engine-core/src/main/parser/Parser.jjt
URL: http://svn.apache.org/viewvc/velocity/engine/trunk/velocity-engine-core/src/main/parser/Parser.jjt?rev=1773555&r1=1773554&r2=1773555&view=diff
==============================================================================
--- velocity/engine/trunk/velocity-engine-core/src/main/parser/Parser.jjt (original)
+++ velocity/engine/trunk/velocity-engine-core/src/main/parser/Parser.jjt Sun Dec 11 10:22:47 2016
@@ -1171,8 +1171,8 @@ TOKEN:
  *  ^ ^ ^   ^       ^
  *  | | |   |       |
  *  |_________________ >  PRE_REFERENCE : state initiated by the '$' character.
- *  | | |   |       |
- *  |__________________>  REFERENCE : state initiated by the identifier. Continues
+ *    | |   |       |
+ *    |________________>  REFERENCE : state initiated by the identifier. Continues
  *      |   |       |     until end of the reference, or the . character.
  *      |_____________ >  REFMODIFIER : state switched to when the <DOT> is encountered.
  *          |       |     note that this is a switch, not a push. See notes at bottom.