You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by sa...@apache.org on 2010/12/31 18:47:18 UTC

svn commit: r1054148 - /lucene/dev/branches/branch_3x/lucene/CHANGES.txt

Author: sarowe
Date: Fri Dec 31 17:47:18 2010
New Revision: 1054148

URL: http://svn.apache.org/viewvc?rev=1054148&view=rev
Log:
Fix typos in not-yet-unreleased sections

Modified:
    lucene/dev/branches/branch_3x/lucene/CHANGES.txt

Modified: lucene/dev/branches/branch_3x/lucene/CHANGES.txt
URL: http://svn.apache.org/viewvc/lucene/dev/branches/branch_3x/lucene/CHANGES.txt?rev=1054148&r1=1054147&r2=1054148&view=diff
==============================================================================
--- lucene/dev/branches/branch_3x/lucene/CHANGES.txt (original)
+++ lucene/dev/branches/branch_3x/lucene/CHANGES.txt Fri Dec 31 17:47:18 2010
@@ -5,7 +5,7 @@ Lucene Change Log
 Changes in backwards compatibility policy
 
 * LUCENE-2719: Changed API of internal utility class
-  org.apche.lucene.util.SorterTemplate to support faster quickSort using
+  org.apache.lucene.util.SorterTemplate to support faster quickSort using
   pivot values and also merge sort and insertion sort. If you have used
   this class, you have to implement two more methods for handling pivots.
   (Uwe Schindler, Robert Muir, Mike McCandless)
@@ -123,7 +123,7 @@ Changes in runtime behavior
 * LUCENE-2805: IndexWriter now increments the index version on every change to
   the index instead of for every commit. Committing or closing the IndexWriter
   without any changes to the index will not cause any index version increment.
-  (Simon Willnauer, Mike Mccandless)
+  (Simon Willnauer, Mike McCandless)
 
 * LUCENE-2650, LUCENE-2825: The behavior of FSDirectory.open has changed. On 64-bit
   Windows and Solaris systems that support unmapping, FSDirectory.open returns
@@ -220,7 +220,7 @@ API Changes
   (Shai Erera)
   
 * LUCENE-2356: Add IndexWriterConfig.set/getReaderTermIndexDivisor, to
-  set what IndexWriter passes for termsaIndexDivisor to the readers it
+  set what IndexWriter passes for termsIndexDivisor to the readers it
   opens internally when apply deletions or creating a near-real-time
   reader.  (Earwin Burrfoot via Mike McCandless)
 
@@ -282,7 +282,7 @@ Bug fixes
 * LUCENE-2272: Fix explain in PayloadNearQuery and also fix scoring issue (Peter Keegan via Grant Ingersoll)
 
 * LUCENE-2732: Fix charset problems in XML loading in
-  HyphenationCompoundWordTokenFilter.  (Uwe Schinder)
+  HyphenationCompoundWordTokenFilter.  (Uwe Schindler)
 
 * LUCENE-2802: NRT DirectoryReader returned incorrect values from
   getVersion, isOptimized, getCommitUserData, getIndexCommit and isCurrent due
@@ -408,7 +408,7 @@ Optimizations
 
 * LUCENE-2136: If the multi reader (DirectoryReader or MultiReader)
   only has a single sub-reader, delegate all enum requests to it.
-  This avoid the overhead of using a PQ unecessarily.  (Mike
+  This avoid the overhead of using a PQ unnecessarily.  (Mike
   McCandless)
 
 * LUCENE-2137: Switch to AtomicInteger for some ref counting (Earwin
@@ -473,7 +473,7 @@ Optimizations
   streams. (Shai Erera)
 
 * LUCENE-2719: Improved TermsHashPerField's sorting to use a better
-  quick sort algorithm that dereferences the privot element not on
+  quick sort algorithm that dereferences the pivot element not on
   every compare call. Also replaced lots of sorting code in Lucene
   by the improved SorterTemplate class.
   (Uwe Schindler, Robert Muir, Mike McCandless)
@@ -501,7 +501,7 @@ Build
 
 * LUCENE-1709: Tests are now parallelized by default (except for benchmark). You
   can force them to run sequentially by passing -Drunsequential=1 on the command
-  line. The number of threads that are spwaned per CPU defaults to '1'. If you 
+  line. The number of threads that are spawned per CPU defaults to '1'. If you 
   wish to change that, you can run the tests with -DthreadsPerProcessor=[num].
   (Robert Muir, Shai Erera, Peter Kofler)
 
@@ -515,7 +515,7 @@ Build
 
 Test Cases
 
-* LUCENE-2037 Allow Junit4 tests in our envrionment (Erick Erickson
+* LUCENE-2037 Allow Junit4 tests in our environment (Erick Erickson
   via Mike McCandless)
 
 * LUCENE-1844: Speed up the unit tests (Mark Miller, Erick Erickson,
@@ -537,7 +537,7 @@ Test Cases
 * LUCENE-2313, LUCENE-2322: Add VERBOSE to LuceneTestCase(J4) to control
   verbosity of tests. If VERBOSE==false (default) tests should not print
   anything other than errors to System.(out|err). The setting can be
-  changed with -Dtests.verbose=true on test invokation.
+  changed with -Dtests.verbose=true on test invocation.
   (Shai Erera, Paul Elschot, Uwe Schindler)
 
 * LUCENE-2318: Remove inconsistent system property code for retrieving
@@ -559,7 +559,7 @@ Documentation
 * LUCENE-2579: Fix oal.search's package.html description of abstract
   methods.  (Santiago M. Mola via Mike McCandless)
    
-* LUCENE-2625: Add a note to IndexReader.termDocs() with additional verbage
+* LUCENE-2625: Add a note to IndexReader.termDocs() with additional verbiage
   that the TermEnum must be seeked since it is unpositioned.
   (Adriano Crestani via Robert Muir)