diff --git a/lucene/src/java/org/apache/lucene/util/fst/Builder.java b/lucene/src/java/org/apache/lucene/util/fst/Builder.java index 9a30e144001..f80a6979aab 100644 --- a/lucene/src/java/org/apache/lucene/util/fst/Builder.java +++ b/lucene/src/java/org/apache/lucene/util/fst/Builder.java @@ -165,8 +165,8 @@ public class Builder { } /** Pass false to disable the array arc optimization - * while building the FST. This is necessary if - * encoding a single arc may take more than 255 bytes. */ + * while building the FST; this will make the resulting + * FST smaller but slower to traverse. */ public void setAllowArrayArcs(boolean b) { fst.setAllowArrayArcs(b); }