Skip to content

Commit

Permalink
Use natural word order for this option.
Browse files Browse the repository at this point in the history
headius committed Apr 13, 2017
1 parent 345e33b commit b0ef07a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/src/main/java/org/jruby/util/cli/Options.java
Original file line number Diff line number Diff line change
@@ -172,7 +172,7 @@ public class Options {
public static final Option<Boolean> USE_FIXNUM_CACHE = bool(MISCELLANEOUS, "fixnum.cache", true, "Use a cache of low-valued Fixnum objects.");
public static final Option<Integer> FIXNUM_CACHE_RANGE = integer(MISCELLANEOUS, "fixnum.cache.size", 256, "Values to retrieve from Fixnum cache, in the range -X..(X-1).");
public static final Option<Boolean> PACKED_ARRAYS = bool(MISCELLANEOUS, "packed.arrays", true, "Toggle whether to use \"packed\" arrays for small tuples.");
public static final Option<Boolean> FLAT_PARSER = bool(MISCELLANEOUS, "parser.flat", false, "Toggle whether to use the \"flat\" parser rather than the command-based version.");
public static final Option<Boolean> FLAT_PARSER = bool(MISCELLANEOUS, "flat.parser", false, "Toggle whether to use the \"flat\" parser rather than the command-based version.");

public static final Option<Boolean> DEBUG_LOADSERVICE = bool(DEBUG, "debug.loadService", false, "Log require/load file searches.");
public static final Option<Boolean> DEBUG_LOADSERVICE_TIMING = bool(DEBUG, "debug.loadService.timing", false, "Log require/load parse+evaluate times.");

0 comments on commit b0ef07a

Please sign in to comment.