@@ -123,7 +123,7 @@ https://github.com/lightbend/config/blob/master/NEWS.md
123123
124124### API docs
125125
126- - Online: http ://lightbend.github.io/config/latest/api/
126+ - Online: https ://lightbend.github.io/config/latest/api/
127127 - also published in jar form
128128 - consider reading this README first for an intro
129129 - for questions about the ` .conf ` file format, read
@@ -138,7 +138,7 @@ requests on GitHub.
138138Before we can accept pull requests, you will need to agree to the
139139Typesafe Contributor License Agreement online, using your GitHub
140140account - it takes 30 seconds. You can do this at
141- http ://www.typesafe .com/contribute/cla
141+ https ://www.lightbend .com/contribute/cla
142142
143143Please see
144144[ CONTRIBUTING] ( https://github.com/lightbend/config/blob/master/CONTRIBUTING.md )
@@ -186,7 +186,7 @@ Objects are immutable, so methods on `Config` which transform the
186186configuration return a new ` Config ` . Other types such as
187187` ConfigParseOptions ` , ` ConfigResolveOptions ` , ` ConfigObject ` ,
188188etc. are also immutable. See the
189- [ API docs] ( http ://lightbend.github.io/config/latest/api/) for
189+ [ API docs] ( https ://lightbend.github.io/config/latest/api/) for
190190details of course.
191191
192192### Schemas and Validation
@@ -195,7 +195,7 @@ There isn't a schema language or anything like that. However, two
195195suggested tools are:
196196
197197 - use the
198- [ checkValid() method] ( http ://lightbend.github.io/config/latest/api/com/typesafe/config/Config.html#checkValid-com.typesafe.config.Config-java.lang.String...-)
198+ [ checkValid() method] ( https ://lightbend.github.io/config/latest/api/com/typesafe/config/Config.html#checkValid-com.typesafe.config.Config-java.lang.String...-)
199199 - access your config through a Settings class with a field for
200200 each setting, and instantiate it on startup (immediately
201201 throwing an exception if any settings are missing)
@@ -432,7 +432,7 @@ values into multiple places in your code. You have been warned!
432432### Understanding ` Config ` and ` ConfigObject `
433433
434434To read and modify configuration, you'll use the
435- [ Config] ( http ://lightbend.github.io/config/latest/api/com/typesafe/config/Config.html)
435+ [ Config] ( https ://lightbend.github.io/config/latest/api/com/typesafe/config/Config.html)
436436interface. A ` Config ` looks at a JSON-equivalent data structure as
437437a one-level map from paths to values. So if your JSON looks like
438438this:
@@ -460,7 +460,7 @@ skip `null` values.
460460
461461You can also look at a ` Config ` in the way most JSON APIs would,
462462through the
463- [ ConfigObject] ( http ://lightbend.github.io/config/latest/api/com/typesafe/config/ConfigObject.html)
463+ [ ConfigObject] ( https ://lightbend.github.io/config/latest/api/com/typesafe/config/ConfigObject.html)
464464interface. This interface represents an object node in the JSON
465465tree. ` ConfigObject ` instances come in multi-level trees, and the
466466keys do not have any syntax (they are just strings, not path
@@ -472,15 +472,15 @@ expressions). Iterating over the above example as a
472472In ` ConfigObject ` , ` null ` values are visible (distinct from
473473missing values), just as they are in JSON.
474474
475- ` ConfigObject ` is a subtype of [ ConfigValue] ( http ://lightbend.github.io/config/latest/api/com/typesafe/config/ConfigValue.html) , where the other
475+ ` ConfigObject ` is a subtype of [ ConfigValue] ( https ://lightbend.github.io/config/latest/api/com/typesafe/config/ConfigValue.html) , where the other
476476subtypes are the other JSON types (list, string, number, boolean, null).
477477
478478` Config ` and ` ConfigObject ` are two ways to look at the same
479479internal data structure, and you can convert between them for free
480480using
481- [ Config.root()] ( http ://lightbend.github.io/config/latest/api/com/typesafe/config/Config.html#root%28%29 )
481+ [ Config.root()] ( https ://lightbend.github.io/config/latest/api/com/typesafe/config/Config.html#root-- )
482482and
483- [ ConfigObject.toConfig()] ( http ://lightbend.github.io/config/latest/api/com/typesafe/config/ConfigObject.html#toConfig%28%29 ) .
483+ [ ConfigObject.toConfig()] ( https ://lightbend.github.io/config/latest/api/com/typesafe/config/ConfigObject.html#toConfig-- ) .
484484
485485### ConfigBeanFactory
486486
0 commit comments