You are viewing a plain text version of this content. The canonical link for it is here.
Posted to solr-commits@lucene.apache.org by sh...@apache.org on 2008/09/26 22:13:08 UTC

svn commit: r699479 - /lucene/solr/trunk/src/java/org/apache/solr/common/SolrInputDocument.java

Author: shalin
Date: Fri Sep 26 13:13:08 2008
New Revision: 699479

URL: http://svn.apache.org/viewvc?rev=699479&view=rev
Log:
Fixing typo

Modified:
    lucene/solr/trunk/src/java/org/apache/solr/common/SolrInputDocument.java

Modified: lucene/solr/trunk/src/java/org/apache/solr/common/SolrInputDocument.java
URL: http://svn.apache.org/viewvc/lucene/solr/trunk/src/java/org/apache/solr/common/SolrInputDocument.java?rev=699479&r1=699478&r2=699479&view=diff
==============================================================================
--- lucene/solr/trunk/src/java/org/apache/solr/common/SolrInputDocument.java (original)
+++ lucene/solr/trunk/src/java/org/apache/solr/common/SolrInputDocument.java Fri Sep 26 13:13:08 2008
@@ -171,6 +171,6 @@
   @Override
   public String toString()
   {
-    return "SolrInputDocumnt["+_fields+"]";
+    return "SolrInputDocument["+_fields+"]";
   }
 }