You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by no...@apache.org on 2016/02/24 07:12:40 UTC

[33/53] [abbrv] lucene-solr git commit: fix javadocs typos

fix javadocs typos


Project: http://git-wip-us.apache.org/repos/asf/lucene-solr/repo
Commit: http://git-wip-us.apache.org/repos/asf/lucene-solr/commit/dfd95df2
Tree: http://git-wip-us.apache.org/repos/asf/lucene-solr/tree/dfd95df2
Diff: http://git-wip-us.apache.org/repos/asf/lucene-solr/diff/dfd95df2

Branch: refs/heads/apiv2
Commit: dfd95df2f18935c6a3db98c416ee7de4e7b0c6bd
Parents: ed90697
Author: Robert Muir <rm...@apache.org>
Authored: Mon Feb 22 12:28:29 2016 -0500
Committer: Robert Muir <rm...@apache.org>
Committed: Mon Feb 22 12:28:58 2016 -0500

----------------------------------------------------------------------
 lucene/core/src/java/org/apache/lucene/codecs/PointWriter.java   | 2 +-
 .../org/apache/lucene/codecs/lucene60/Lucene60PointFormat.java   | 4 +---
 lucene/core/src/java/org/apache/lucene/document/BinaryPoint.java | 2 +-
 lucene/core/src/java/org/apache/lucene/document/DoublePoint.java | 2 +-
 lucene/core/src/java/org/apache/lucene/document/FloatPoint.java  | 2 +-
 lucene/core/src/java/org/apache/lucene/document/IntPoint.java    | 2 +-
 lucene/core/src/java/org/apache/lucene/document/LongPoint.java   | 2 +-
 7 files changed, 7 insertions(+), 9 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/lucene-solr/blob/dfd95df2/lucene/core/src/java/org/apache/lucene/codecs/PointWriter.java
----------------------------------------------------------------------
diff --git a/lucene/core/src/java/org/apache/lucene/codecs/PointWriter.java b/lucene/core/src/java/org/apache/lucene/codecs/PointWriter.java
index fb809d7..21d9044 100644
--- a/lucene/core/src/java/org/apache/lucene/codecs/PointWriter.java
+++ b/lucene/core/src/java/org/apache/lucene/codecs/PointWriter.java
@@ -37,7 +37,7 @@ public abstract class PointWriter implements Closeable {
   /** Write all values contained in the provided reader */
   public abstract void writeField(FieldInfo fieldInfo, PointReader values) throws IOException;
 
-  /** Default naive merge implemenation for one field: it just re-indexes all the values
+  /** Default naive merge implementation for one field: it just re-indexes all the values
    *  from the incoming segment.  The default codec overrides this for 1D fields and uses
    *  a faster but more complex implementation. */
   protected void mergeOneField(MergeState mergeState, FieldInfo fieldInfo) throws IOException {

http://git-wip-us.apache.org/repos/asf/lucene-solr/blob/dfd95df2/lucene/core/src/java/org/apache/lucene/codecs/lucene60/Lucene60PointFormat.java
----------------------------------------------------------------------
diff --git a/lucene/core/src/java/org/apache/lucene/codecs/lucene60/Lucene60PointFormat.java b/lucene/core/src/java/org/apache/lucene/codecs/lucene60/Lucene60PointFormat.java
index 8ea932b..8f43187 100644
--- a/lucene/core/src/java/org/apache/lucene/codecs/lucene60/Lucene60PointFormat.java
+++ b/lucene/core/src/java/org/apache/lucene/codecs/lucene60/Lucene60PointFormat.java
@@ -64,10 +64,8 @@ import org.apache.lucene.index.SegmentWriteState;
  *   <li> (fieldNumber (vInt), fieldFilePointer (vLong))<sup>fieldCount</sup>
  * </ul>
  *
- * <p> After that, {@link CodecUtil#writeFooter} writes the checksum.
- *
  * <p>After all fields blocks + index data are written, {@link CodecUtil#writeFooter} writes the checksum.
-
+ *
  * @lucene.experimental
  */
 

http://git-wip-us.apache.org/repos/asf/lucene-solr/blob/dfd95df2/lucene/core/src/java/org/apache/lucene/document/BinaryPoint.java
----------------------------------------------------------------------
diff --git a/lucene/core/src/java/org/apache/lucene/document/BinaryPoint.java b/lucene/core/src/java/org/apache/lucene/document/BinaryPoint.java
index 920ac42..f80e1c0 100644
--- a/lucene/core/src/java/org/apache/lucene/document/BinaryPoint.java
+++ b/lucene/core/src/java/org/apache/lucene/document/BinaryPoint.java
@@ -21,7 +21,7 @@ import org.apache.lucene.util.BytesRef;
 
 /** A binary field that is indexed dimensionally such that finding
  *  all documents within an N-dimensional shape or range at search time is
- *  efficient.  Muliple values for the same field in one documents
+ *  efficient.  Multiple values for the same field in one documents
  *  is allowed. */
 
 public final class BinaryPoint extends Field {

http://git-wip-us.apache.org/repos/asf/lucene-solr/blob/dfd95df2/lucene/core/src/java/org/apache/lucene/document/DoublePoint.java
----------------------------------------------------------------------
diff --git a/lucene/core/src/java/org/apache/lucene/document/DoublePoint.java b/lucene/core/src/java/org/apache/lucene/document/DoublePoint.java
index b50260b..b3534fc 100644
--- a/lucene/core/src/java/org/apache/lucene/document/DoublePoint.java
+++ b/lucene/core/src/java/org/apache/lucene/document/DoublePoint.java
@@ -23,7 +23,7 @@ import org.apache.lucene.util.RamUsageEstimator;
 
 /** A double field that is indexed dimensionally such that finding
  *  all documents within an N-dimensional shape or range at search time is
- *  efficient.  Muliple values for the same field in one documents
+ *  efficient.  Multiple values for the same field in one documents
  *  is allowed. */
 
 public final class DoublePoint extends Field {

http://git-wip-us.apache.org/repos/asf/lucene-solr/blob/dfd95df2/lucene/core/src/java/org/apache/lucene/document/FloatPoint.java
----------------------------------------------------------------------
diff --git a/lucene/core/src/java/org/apache/lucene/document/FloatPoint.java b/lucene/core/src/java/org/apache/lucene/document/FloatPoint.java
index 8e0a257..92ea9d6 100644
--- a/lucene/core/src/java/org/apache/lucene/document/FloatPoint.java
+++ b/lucene/core/src/java/org/apache/lucene/document/FloatPoint.java
@@ -23,7 +23,7 @@ import org.apache.lucene.util.RamUsageEstimator;
 
 /** A field that is indexed dimensionally such that finding
  *  all documents within an N-dimensional at search time is
- *  efficient.  Muliple values for the same field in one documents
+ *  efficient.  Multiple values for the same field in one documents
  *  is allowed. */
 
 public final class FloatPoint extends Field {

http://git-wip-us.apache.org/repos/asf/lucene-solr/blob/dfd95df2/lucene/core/src/java/org/apache/lucene/document/IntPoint.java
----------------------------------------------------------------------
diff --git a/lucene/core/src/java/org/apache/lucene/document/IntPoint.java b/lucene/core/src/java/org/apache/lucene/document/IntPoint.java
index f582bf6..e4a88e4 100644
--- a/lucene/core/src/java/org/apache/lucene/document/IntPoint.java
+++ b/lucene/core/src/java/org/apache/lucene/document/IntPoint.java
@@ -23,7 +23,7 @@ import org.apache.lucene.util.RamUsageEstimator;
 
 /** An int field that is indexed dimensionally such that finding
  *  all documents within an N-dimensional shape or range at search time is
- *  efficient.  Muliple values for the same field in one documents
+ *  efficient.  Multiple values for the same field in one documents
  *  is allowed. */
 
 public final class IntPoint extends Field {

http://git-wip-us.apache.org/repos/asf/lucene-solr/blob/dfd95df2/lucene/core/src/java/org/apache/lucene/document/LongPoint.java
----------------------------------------------------------------------
diff --git a/lucene/core/src/java/org/apache/lucene/document/LongPoint.java b/lucene/core/src/java/org/apache/lucene/document/LongPoint.java
index e645260..950101f 100644
--- a/lucene/core/src/java/org/apache/lucene/document/LongPoint.java
+++ b/lucene/core/src/java/org/apache/lucene/document/LongPoint.java
@@ -23,7 +23,7 @@ import org.apache.lucene.util.RamUsageEstimator;
 
 /** A long field that is indexed dimensionally such that finding
  *  all documents within an N-dimensional shape or range at search time is
- *  efficient.  Muliple values for the same field in one documents
+ *  efficient.  Multiple values for the same field in one documents
  *  is allowed. */
 
 public final class LongPoint extends Field {