From 4e14def6235deccac2959c37258aefadf7a2d8fe Mon Sep 17 00:00:00 2001 From: Michael Bayne Date: Thu, 9 Aug 2018 12:27:23 -0700 Subject: [PATCH] Truthier doc comment. --- src/main/java/com/threerings/getdown/util/Config.java | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/main/java/com/threerings/getdown/util/Config.java b/src/main/java/com/threerings/getdown/util/Config.java index 81eade1..61d20b0 100644 --- a/src/main/java/com/threerings/getdown/util/Config.java +++ b/src/main/java/com/threerings/getdown/util/Config.java @@ -26,8 +26,10 @@ import com.samskivert.util.StringUtil; import static com.threerings.getdown.Log.log; /** - * Parses a file containing key/value pairs and returns a {@link HashMap} with the values. Keys may - * be repeated, in which case they will be made to reference an array of values. + * Handles parsing and runtime access for Getdown's config files (mainly {@code getdown.txt}). + * These files contain zero or more mappings for a particular string key. Config values can be + * fetched as single strings, lists of strings, or parsed into primitives or compound data types + * like colors and rectangles. */ public class Config {