From 5a4148c9840ded46279f01189000112270154d73 Mon Sep 17 00:00:00 2001 From: Sebastien Deleuze Date: Sun, 13 May 2018 16:10:30 +0200 Subject: [PATCH] Add explanations about implicit autowiring --- README.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.adoc b/README.adoc index f60a2cf..470ef84 100644 --- a/README.adoc +++ b/README.adoc @@ -569,7 +569,7 @@ And we create an "article" new one. {{> footer}} ---- -We update the `HtmlController` in order to render blog and article pages with rendered markdown and formatted date. +We update the `HtmlController` in order to render blog and article pages with rendered markdown and formatted date. `ArticleRepository` and `MarkdownConverter` constructor parameters will be automatically autowired since `HtmlController` has a single constructor (implicit `@Autowired`). `src/main/kotlin/blog/HtmlController.kt` [source,kotlin]