@@ -104,7 +104,7 @@ https://github.com/typesafehub/config/blob/master/NEWS.md
104104 - also published in jar form
105105 - consider reading this README first for an intro
106106 - for questions about the ` .conf ` file format, read
107- [ HOCON.md] (https://github.com/typesafehub/config/blob/master/HOCON.md ]
107+ [ HOCON.md] ( https://github.com/typesafehub/config/blob/master/HOCON.md )
108108 in this directory
109109
110110### Bugs and Patches
@@ -381,7 +381,7 @@ this:
381381Using the ` Config ` interface, you could write
382382` conf.getInt("foo.bar") ` . The ` foo.bar ` string is called a _ path
383383expression_
384- ([ HOCON.md] (https://github.com/typesafehub/config/blob/master/HOCON.md ]
384+ ([ HOCON.md] ( https://github.com/typesafehub/config/blob/master/HOCON.md )
385385has the syntax details for these expressions). Iterating over this
386386` Config ` , you would get two entries; ` "foo.bar" : 42 ` and
387387` "foo.baz" : 43 ` . When iterating a ` Config ` you will not find
@@ -406,7 +406,7 @@ expressions). Iterating over the above example as a
406406In ` ConfigObject ` , ` null ` values are visible (distinct from
407407missing values), just as they are in JSON.
408408
409- ` ConfigObject ` is a subtype of [ ConfigValue] (( http://typesafehub.github.io/config/latest/api/com/typesafe/config/ConfigValue.html ), where the other
409+ ` ConfigObject ` is a subtype of [ ConfigValue] ( http://typesafehub.github.io/config/latest/api/com/typesafe/config/ConfigValue.html ) , where the other
410410subtypes are the other JSON types (list, string, number, boolean, null).
411411
412412` Config ` and ` ConfigObject ` are two ways to look at the same
421421
422422The JSON superset is called "Human-Optimized Config Object
423423Notation" or HOCON, and files use the suffix ` .conf ` . See
424- [ HOCON.md] (https://github.com/typesafehub/config/blob/master/HOCON.md ]
424+ [ HOCON.md] ( https://github.com/typesafehub/config/blob/master/HOCON.md )
425425in this directory for more detail.
426426
427427After processing a ` .conf ` file, the result is always just a JSON
0 commit comments