From 561c24b3285c08da778b1a798429588c5235b6c6 Mon Sep 17 00:00:00 2001 From: sdeleuze Date: Mon, 26 Mar 2018 09:10:53 +0200 Subject: [PATCH] Fix Kotlin @ConfigurationProperties example Closes gh-12633 --- .../src/main/asciidoc/spring-boot-features.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spring-boot-project/spring-boot-docs/src/main/asciidoc/spring-boot-features.adoc b/spring-boot-project/spring-boot-docs/src/main/asciidoc/spring-boot-features.adoc index eaf4bf3386..292c3f7df1 100644 --- a/spring-boot-project/spring-boot-docs/src/main/asciidoc/spring-boot-features.adoc +++ b/spring-boot-project/spring-boot-docs/src/main/asciidoc/spring-boot-features.adoc @@ -7745,7 +7745,7 @@ class KotlinExampleProperties { lateinit var foo2: String - lateinit val bar = Bar() + val bar = Bar() class Bar {