Skip to content

Commit 2b4516a

Browse files
committed
Fix markdown syntax in README
1 parent 7982304 commit 2b4516a

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -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:
381381
Using the `Config` interface, you could write
382382
`conf.getInt("foo.bar")`. The `foo.bar` string is called a _path
383383
expression_
384-
([HOCON.md](https://github.com/typesafehub/config/blob/master/HOCON.md]
384+
([HOCON.md](https://github.com/typesafehub/config/blob/master/HOCON.md)
385385
has 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
406406
In `ConfigObject`, `null` values are visible (distinct from
407407
missing 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
410410
subtypes are the other JSON types (list, string, number, boolean, null).
411411

412412
`Config` and `ConfigObject` are two ways to look at the same
@@ -421,7 +421,7 @@ and
421421

422422
The JSON superset is called "Human-Optimized Config Object
423423
Notation" 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)
425425
in this directory for more detail.
426426

427427
After processing a `.conf` file, the result is always just a JSON

0 commit comments

Comments
 (0)