From a57f037c12484d4fc8b2cfa157814bbf2149087a Mon Sep 17 00:00:00 2001 From: Louis CAD Date: Thu, 17 Jun 2021 09:55:09 +0200 Subject: [PATCH] Reformat Kotlin snippet in README (#781) It now conforms to the official Kotlin style guide. --- tutorials/Web/Getting_Started/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tutorials/Web/Getting_Started/README.md b/tutorials/Web/Getting_Started/README.md index cd1ed9b5ea..9e321a591f 100644 --- a/tutorials/Web/Getting_Started/README.md +++ b/tutorials/Web/Getting_Started/README.md @@ -103,14 +103,14 @@ fun main() { var count: Int by mutableStateOf(0) renderComposable(rootElementId = "root") { - Div({style { padding(25.px) }}) { + Div({ style { padding(25.px) } }) { Button(attrs = { onClick { count -= 1 } }) { Text("-") } - Span({style {padding(15.px) }}) { + Span({ style { padding(15.px) } }) { Text("$count") }