Index: src/java/org/apache/lucene/search/Searchable.java
===================================================================
--- src/java/org/apache/lucene/search/Searchable.java	(revision 822814)
+++ src/java/org/apache/lucene/search/Searchable.java	(working copy)
@@ -87,7 +87,7 @@
 
   /** Frees resources associated with this Searcher.
    * Be careful not to call this method while you are still using objects
-   * like {@link Hits}.
+   * that reference this Searchable.
    */
   void close() throws IOException;
 
Index: src/java/org/apache/lucene/search/TopDocs.java
===================================================================
--- src/java/org/apache/lucene/search/TopDocs.java	(revision 822814)
+++ src/java/org/apache/lucene/search/TopDocs.java	(working copy)
@@ -21,7 +21,6 @@
  * @see Searcher#search(Query,Filter,int) */
 public class TopDocs implements java.io.Serializable {
   /** Expert: The total number of hits for the query.
-   * @see Hits#length()
   */
   public int totalHits;
   /** Expert: The top hits for the query. */
Index: src/java/org/apache/lucene/search/IndexSearcher.java
===================================================================
--- src/java/org/apache/lucene/search/IndexSearcher.java	(revision 822814)
+++ src/java/org/apache/lucene/search/IndexSearcher.java	(working copy)
@@ -36,9 +36,6 @@
  * or {@link #search(Query,Filter,int)} methods. For performance reasons it is 
  * recommended to open only one IndexSearcher and use it for all of your searches.
  * 
- * <p>Note that you can only access the deprecated {@link Hits} from an IndexSearcher as long as it is
- * not yet closed, otherwise an IOException will be thrown. 
- *
  * <a name="thread-safety"></a><p><b>NOTE</b>: {@link
  * <code>IndexSearcher</code>} instances are completely
  * thread safe, meaning multiple threads can call any of its
Index: src/java/org/apache/lucene/document/Fieldable.java
===================================================================
--- src/java/org/apache/lucene/document/Fieldable.java	(revision 822814)
+++ src/java/org/apache/lucene/document/Fieldable.java	(working copy)
@@ -62,7 +62,7 @@
    *
    * <p>Note: this value is not stored directly with the document in the index.
    * Documents returned from {@link org.apache.lucene.index.IndexReader#document(int)} and
-   * {@link org.apache.lucene.search.Hits#doc(int)} may thus not have the same value present as when
+   * {@link org.apache.lucene.search.Searcher#doc(int)} may thus not have the same value present as when
    * this field was indexed.
    *
    * @see #setBoost(float)
Index: src/java/org/apache/lucene/document/AbstractField.java
===================================================================
--- src/java/org/apache/lucene/document/AbstractField.java	(revision 822814)
+++ src/java/org/apache/lucene/document/AbstractField.java	(working copy)
@@ -130,7 +130,7 @@
    *
    * <p>Note: this value is not stored directly with the document in the index.
    * Documents returned from {@link org.apache.lucene.index.IndexReader#document(int)} and
-   * {@link org.apache.lucene.search.Hits#doc(int)} may thus not have the same value present as when
+   * {@link org.apache.lucene.search.Searcher#doc(int)} may thus not have the same value present as when
    * this field was indexed.
    *
    * @see #setBoost(float)
