From 67b1aac95aa4b3147744d7bdbb7f645aea9634e2 Mon Sep 17 00:00:00 2001 From: Nurgazy Nazhimidinov Date: Sun, 6 Mar 2022 15:49:58 +0300 Subject: [PATCH] Update README.adoc Link was broken. I updated it. --- README.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.adoc b/README.adoc index 185304a..6f025d9 100644 --- a/README.adoc +++ b/README.adoc @@ -309,7 +309,7 @@ class HtmlController { ---- Notice that we are using here a https://kotlinlang.org/docs/reference/extensions.html[Kotlin extension] that allows to add Kotlin functions or operators to existing Spring types. Here we import the `org.springframework.ui.set` extension function in order to be able to write `model["title"] = "Blog"` instead of `model.addAttribute("title", "Blog")`. -The https://docs.spring.io/spring-framework/docs/current/kdoc-api/spring-framework/[Spring Framework KDoc API] lists all the Kotlin extensions provided to enrich the Java API. +The https://docs.spring.io/spring-framework/docs/current/kdoc-api/[Spring Framework KDoc API] lists all the Kotlin extensions provided to enrich the Java API. We also need to create the associated Mustache templates.