You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by ab...@apache.org on 2017/12/04 17:48:55 UTC

[11/50] lucene-solr:jira/solr-11458-2: Clarify comment in CompressingStoredFieldsIndexWriter.

Clarify comment in CompressingStoredFieldsIndexWriter.


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

Branch: refs/heads/jira/solr-11458-2
Commit: 4a12e066bbd257e79d942cad1f96f14f72f8584e
Parents: cc8802e
Author: Adrien Grand <jp...@gmail.com>
Authored: Fri Nov 24 10:57:22 2017 +0100
Committer: Adrien Grand <jp...@gmail.com>
Committed: Fri Nov 24 13:57:40 2017 +0100

----------------------------------------------------------------------
 .../codecs/compressing/CompressingStoredFieldsIndexWriter.java     | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/lucene-solr/blob/4a12e066/lucene/core/src/java/org/apache/lucene/codecs/compressing/CompressingStoredFieldsIndexWriter.java
----------------------------------------------------------------------
diff --git a/lucene/core/src/java/org/apache/lucene/codecs/compressing/CompressingStoredFieldsIndexWriter.java b/lucene/core/src/java/org/apache/lucene/codecs/compressing/CompressingStoredFieldsIndexWriter.java
index b90abdf..0372f2c 100644
--- a/lucene/core/src/java/org/apache/lucene/codecs/compressing/CompressingStoredFieldsIndexWriter.java
+++ b/lucene/core/src/java/org/apache/lucene/codecs/compressing/CompressingStoredFieldsIndexWriter.java
@@ -64,7 +64,7 @@ import org.apache.lucene.util.packed.PackedInts;
  * <li>For any block, the start pointer of the n-th chunk can be restored with
  * <code>StartPointerBase + AvgChunkSize * n + StartPointerDeltas[n]</code>.</li>
  * <li>Once data is loaded into memory, you can lookup the start pointer of any
- * document by performing two binary searches: a first one based on the values
+ * document chunk by performing two binary searches: a first one based on the values
  * of DocBase in order to find the right block, and then inside the block based
  * on DocBaseDeltas (by reconstructing the doc bases for every chunk).</li>
  * </ul>