fix broken html

git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1378152 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Robert Muir 2012-08-28 14:37:46 +00:00
parent 2684ba035e
commit 15abfb83be
2 changed files with 3 additions and 3 deletions

View File

@ -80,7 +80,7 @@ public class QueryNodeParseException extends QueryNodeException {
} }
/** /**
* For EndOfLine and EndOfFile ("<EOF>") parsing problems the last char in the * For EndOfLine and EndOfFile ("&lt;EOF&gt;") parsing problems the last char in the
* string is returned For the case where the parser is not able to figure out * string is returned For the case where the parser is not able to figure out
* the line and column number -1 will be returned * the line and column number -1 will be returned
* *
@ -91,7 +91,7 @@ public class QueryNodeParseException extends QueryNodeException {
} }
/** /**
* For EndOfLine and EndOfFile ("<EOF>") parsing problems the last char in the * For EndOfLine and EndOfFile ("&lt;EOF&gt;") parsing problems the last char in the
* string is returned For the case where the parser is not able to figure out * string is returned For the case where the parser is not able to figure out
* the line and column number -1 will be returned * the line and column number -1 will be returned
* *

View File

@ -211,7 +211,7 @@ public abstract class QueryNodeImpl implements QueryNode, Cloneable {
/** /**
* Every implementation of this class should return pseudo xml like this: * Every implementation of this class should return pseudo xml like this:
* *
* For FieldQueryNode: <field start='1' end='2' field='subject' text='foo'/> * For FieldQueryNode: &lt;field start='1' end='2' field='subject' text='foo'/&gt;
* *
* @see org.apache.lucene.queryparser.flexible.core.nodes.QueryNode#toString() * @see org.apache.lucene.queryparser.flexible.core.nodes.QueryNode#toString()
*/ */