From 45a503806cda92b36c9ee42abd86df49a07bb44d Mon Sep 17 00:00:00 2001 From: Benjamin Gudehus Date: Fri, 20 May 2016 16:02:44 +0200 Subject: [PATCH] Update kotlin.kt MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Reformat per coding conventions. >There is a space before colon where colon separates type and supertype and there’s no space where colon separates instance and type via: https://kotlinlang.org/docs/reference/coding-conventions.html#colon --- k/kotlin.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/k/kotlin.kt b/k/kotlin.kt index 52899bb4..2abaf43f 100644 --- a/k/kotlin.kt +++ b/k/kotlin.kt @@ -1,5 +1,5 @@ package hello -fun main(args : Array) { +fun main(args: Array) { println("Hello, world!") }