Skip to content

Commit 8d6f451

Browse files
committed
Fix typo in ConfigFactory in documentation
1 parent 4419a65 commit 8d6f451

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/asciidoc/configuration.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -234,7 +234,7 @@ To skip/ignore Jooby loading and precedence mechanism, just instantiate and set
234234
[source,java,role="primary"]
235235
----
236236
{
237-
Config conf = ConfigFatory.load("/path/to/myapp.conf"); <1>
237+
Config conf = ConfigFactory.load("/path/to/myapp.conf"); <1>
238238
Environment env = new Env(customConfig, "prod"); <2>
239239
setEnvironment(env); <3>
240240
}
@@ -244,7 +244,7 @@ To skip/ignore Jooby loading and precedence mechanism, just instantiate and set
244244
[source,kotlin,role="secondary"]
245245
----
246246
{
247-
val conf = ConfigFatory.load("/path/to/myapp.conf") <1>
247+
val conf = ConfigFactory.load("/path/to/myapp.conf") <1>
248248
val env = new Env(conf, "prod") <2>
249249
environment = env <3>
250250
}

0 commit comments

Comments
 (0)