From e858e383508383349adf622a4826ba135b5abff8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Deleuze?= Date: Mon, 24 May 2021 16:11:46 +0200 Subject: [PATCH] Capitalize English --- README.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.adoc b/README.adoc index e84ae5a..157d0c1 100644 --- a/README.adoc +++ b/README.adoc @@ -423,7 +423,7 @@ class IntegrationTests(@Autowired val restTemplate: TestRestTemplate) { == Creating your own extensions -Instead of using util classes with abstract methods like in Java, it is usual in Kotlin to provide such functionalities via Kotlin extensions. Here we are going to add a `format()` function to the existing `LocalDateTime` type in order to generate text with the english date format. +Instead of using util classes with abstract methods like in Java, it is usual in Kotlin to provide such functionalities via Kotlin extensions. Here we are going to add a `format()` function to the existing `LocalDateTime` type in order to generate text with the English date format. `src/main/kotlin/com/example/blog/Extensions.kt` [source,kotlin]