diff --git a/docs/index.html b/docs/index.html
index ebed1ec2a07..fdd1c3f1e4b 100644
--- a/docs/index.html
+++ b/docs/index.html
@@ -18,6 +18,8 @@
+
+
Jakarta Lucene - Overview - Jakarta Lucene
@@ -188,3 +190,9 @@ developed in an open and cooperative fashion.
+
+
+
+
+
+
diff --git a/docs/resources.html b/docs/resources.html
index 64790e80218..8f8fa39fa35 100644
--- a/docs/resources.html
+++ b/docs/resources.html
@@ -16,6 +16,8 @@
+
+
Jakarta Lucene - Resources - Jakarta Lucene
@@ -139,3 +141,9 @@
+
+
+
+
+
+
diff --git a/docs/whoweare.html b/docs/whoweare.html
index bec1547b129..9fc886e0b0e 100644
--- a/docs/whoweare.html
+++ b/docs/whoweare.html
@@ -16,6 +16,8 @@
+
+
Jakarta Lucene - Who We Are - Jakarta Lucene
@@ -191,3 +193,9 @@ the Jakarta-Lucene mailing li
+
+
+
+
+
+
diff --git a/src/java/org/apache/lucene/manifest b/src/java/org/apache/lucene/manifest
index 9421cc6f3b9..a8f07da4174 100644
--- a/src/java/org/apache/lucene/manifest
+++ b/src/java/org/apache/lucene/manifest
@@ -1,8 +1,8 @@
-Name: com/lucene
+Name: org/apache/lucene
Specification-Title: Lucene Search Engine
Specification-Version: $Name$
Specification-Vendor: Lucene
-Implementation-Title: com.lucene
+Implementation-Title: org.apache.lucene
Implementation-Version: $Name$ $Date$
Implementation-Vendor: Lucene
diff --git a/src/java/org/apache/lucene/queryParser/QueryParser.jj b/src/java/org/apache/lucene/queryParser/QueryParser.jj
index c3ba709a6da..571f770139d 100644
--- a/src/java/org/apache/lucene/queryParser/QueryParser.jj
+++ b/src/java/org/apache/lucene/queryParser/QueryParser.jj
@@ -97,12 +97,16 @@ import org.apache.lucene.search.*;
* Clause ::= ["+", "-"] [<TERM> ":"] ( <TERM> | "(" Query ")" )
*
*
+ *
+ * Examples of appropriately formatted queries can be found in the test cases.
+ *
+ *
* @author Brian Goetz
*/
public class QueryParser {
- /** Parses a query string, returning a
- * Query.
+ /** Parses a query string, returning a {@link org.apache.lucene.search.Query}.
* @param query the query string to be parsed.
* @param field the default field for query terms.
* @param analyzer used to find terms in the query text.
diff --git a/src/java/org/apache/lucene/queryParser/package.html b/src/java/org/apache/lucene/queryParser/package.html
index 5a3b8368794..cfbc0815aa5 100644
--- a/src/java/org/apache/lucene/queryParser/package.html
+++ b/src/java/org/apache/lucene/queryParser/package.html
@@ -9,7 +9,7 @@ A simple query parser implemented with JavaCC.
Note that JavaCC defines lots of public, classes, methods and fields
that do not need to be public. These clutter the documentation.
Sorry.
-
Note that because JavaCC defines a class named Token, com.lucene.analysis.Token
+
Note that because JavaCC defines a class named Token, org.apache.lucene.analysis.Token
must always be fully qualified in sourced code in this package.