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 2009/02/24 06:05:12 UTC

svn commit: r747277 - /lucene/solr/trunk/src/java/org/apache/solr/request/UnInvertedField.java

Author: shalin
Date: Tue Feb 24 05:05:12 2009
New Revision: 747277

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

Modified:
    lucene/solr/trunk/src/java/org/apache/solr/request/UnInvertedField.java

Modified: lucene/solr/trunk/src/java/org/apache/solr/request/UnInvertedField.java
URL: http://svn.apache.org/viewvc/lucene/solr/trunk/src/java/org/apache/solr/request/UnInvertedField.java?rev=747277&r1=747276&r2=747277&view=diff
==============================================================================
--- lucene/solr/trunk/src/java/org/apache/solr/request/UnInvertedField.java (original)
+++ lucene/solr/trunk/src/java/org/apache/solr/request/UnInvertedField.java Tue Feb 24 05:05:12 2009
@@ -50,7 +50,7 @@
  *   previous term number.  Real term numbers start at 2 since 0 and 1 are reserved.  A
  *   term number of 0 signals the end of the termNumber list.
  *
- *   There is a singe int[maxDoc()] which either contains a pointer into a byte[] for
+ *   There is a single int[maxDoc()] which either contains a pointer into a byte[] for
  *   the termNumber lists, or directly contains the termNumber list if it fits in the 4
  *   bytes of an integer.  If the first byte in the integer is 1, the next 3 bytes
  *   are a pointer into a byte[] where the termNumber list starts.