You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by jp...@apache.org on 2017/12/08 07:56:42 UTC

[2/2] lucene-solr:branch_7x: LUCENE-8081: Fix javadoc tag.

LUCENE-8081: Fix javadoc tag.


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

Branch: refs/heads/branch_7x
Commit: 027a6edb59fde11ee1704e1df57a37c4b7fb0f94
Parents: fb80264
Author: Adrien Grand <jp...@gmail.com>
Authored: Fri Dec 8 08:52:19 2017 +0100
Committer: Adrien Grand <jp...@gmail.com>
Committed: Fri Dec 8 08:52:46 2017 +0100

----------------------------------------------------------------------
 .../src/java/org/apache/lucene/index/LiveIndexWriterConfig.java  | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/lucene-solr/blob/027a6edb/lucene/core/src/java/org/apache/lucene/index/LiveIndexWriterConfig.java
----------------------------------------------------------------------
diff --git a/lucene/core/src/java/org/apache/lucene/index/LiveIndexWriterConfig.java b/lucene/core/src/java/org/apache/lucene/index/LiveIndexWriterConfig.java
index 1be6a73..af8ff15 100644
--- a/lucene/core/src/java/org/apache/lucene/index/LiveIndexWriterConfig.java
+++ b/lucene/core/src/java/org/apache/lucene/index/LiveIndexWriterConfig.java
@@ -432,7 +432,7 @@ public class LiveIndexWriterConfig {
   /**
    * Expert: Returns if indexing threads check for pending flushes on update in order
    * to help our flushing indexing buffers to disk
-   * @lucene.eperimental
+   * @lucene.experimental
    */
   public boolean isCheckPendingFlushOnUpdate() {
     return checkPendingFlushOnUpdate;
@@ -445,7 +445,7 @@ public class LiveIndexWriterConfig {
    * be the only thread writing segments to disk unless flushes are falling behind. If indexing is stalled
    * due to too many pending flushes indexing threads will help our writing pending segment flushes to disk.
    *
-   * @lucene.eperimental
+   * @lucene.experimental
    */
   public LiveIndexWriterConfig setCheckPendingFlushUpdate(boolean checkPendingFlushOnUpdate) {
     this.checkPendingFlushOnUpdate = checkPendingFlushOnUpdate;