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/11 18:52:28 UTC

[09/21] lucene-solr:jira/solr-11285-sim: 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/b3273942
Tree: http://git-wip-us.apache.org/repos/asf/lucene-solr/tree/b3273942
Diff: http://git-wip-us.apache.org/repos/asf/lucene-solr/diff/b3273942

Branch: refs/heads/jira/solr-11285-sim
Commit: b32739428be0a357a61b7506ca36af3c85b6f236
Parents: 0e1d668
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:19 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/b3273942/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;