You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by mi...@apache.org on 2012/11/16 16:59:40 UTC

svn commit: r1410420 - /lucene/dev/trunk/lucene/core/src/java/org/apache/lucene/util/fst/Builder.java

Author: mikemccand
Date: Fri Nov 16 15:59:39 2012
New Revision: 1410420

URL: http://svn.apache.org/viewvc?rev=1410420&view=rev
Log:
improve javadocs

Modified:
    lucene/dev/trunk/lucene/core/src/java/org/apache/lucene/util/fst/Builder.java

Modified: lucene/dev/trunk/lucene/core/src/java/org/apache/lucene/util/fst/Builder.java
URL: http://svn.apache.org/viewvc/lucene/dev/trunk/lucene/core/src/java/org/apache/lucene/util/fst/Builder.java?rev=1410420&r1=1410419&r2=1410420&view=diff
==============================================================================
--- lucene/dev/trunk/lucene/core/src/java/org/apache/lucene/util/fst/Builder.java (original)
+++ lucene/dev/trunk/lucene/core/src/java/org/apache/lucene/util/fst/Builder.java Fri Nov 16 15:59:39 2012
@@ -136,9 +136,9 @@ public class Builder<T> {
    *    singleton output object.
    *
    * @param willPackFST Pass true if you will pack the FST before saving.  This
-   *    causes the FST to create additional data structures internally to facilitate packing, but
-   *    it means the resulting FST cannot be saved: it must
-   *    first be packed using {@link FST#pack(int, int, float)}
+   *    causes the FST to create additional data structures internally to enable packing, but
+   *    it means the resulting FST cannot be saved until it
+   *    is packed using {@link FST#pack(int, int, float)}
    *
    * @param acceptableOverheadRatio How to trade speed for space when building the FST. This option
    *    is only relevant when willPackFST is true. @see PackedInts#getMutable(int, int, float)