From d30d6f69ca07014efdce95d771403a43423d2143 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20Vitor=20Verona=20Biazibetti?= Date: Fri, 19 May 2017 18:34:27 -0300 Subject: [Kotlin/all] Remove whitespace in variable declaration with explicit type (#2733) * Removed whitespace in variable declaration with explicit type (Kotlin) * Removed whitespace in variable declaration with explicit type (Kotlin translations) --- es-es/kotlin-es.html.markdown | 2 +- ko-kr/kotlin-kr.html.markdown | 2 +- kotlin.html.markdown | 2 +- ru-ru/kotlin-ru.html.markdown | 2 +- zh-cn/kotlin-cn.html.markdown | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/es-es/kotlin-es.html.markdown b/es-es/kotlin-es.html.markdown index f48f6536..045f92d1 100644 --- a/es-es/kotlin-es.html.markdown +++ b/es-es/kotlin-es.html.markdown @@ -39,7 +39,7 @@ fun main(args: Array) { de tal manera que no tenemos que especificarlo explícitamente cada vez.     Podemos declarar explícitamente el tipo de una variable así: */ - val foo : Int = 7 + val foo: Int = 7 /* Las cadenas pueden ser representadas de la misma manera que Java. diff --git a/ko-kr/kotlin-kr.html.markdown b/ko-kr/kotlin-kr.html.markdown index 788f80c5..2df4195d 100644 --- a/ko-kr/kotlin-kr.html.markdown +++ b/ko-kr/kotlin-kr.html.markdown @@ -37,7 +37,7 @@ fun main(args: Array) { 대부분의 경우, Kotlin 에서는 변수 타입을 판단할 수 있기때문에 명시적으로 지정해 주지 않을 수 있습니다. 다음과 같이 변수의 타입을 명시적으로 지정할 수 있습니다. */ - val foo : Int = 7 + val foo: Int = 7 /* 문자형은 Java와 비슷하게 표시될 수 있습니다. diff --git a/kotlin.html.markdown b/kotlin.html.markdown index a7f26126..ca11ee3c 100644 --- a/kotlin.html.markdown +++ b/kotlin.html.markdown @@ -36,7 +36,7 @@ fun main(args: Array) { so we don't have to explicitly specify it every time. We can explicitly declare the type of a variable like so: */ - val foo : Int = 7 + val foo: Int = 7 /* Strings can be represented in a similar way as in Java. diff --git a/ru-ru/kotlin-ru.html.markdown b/ru-ru/kotlin-ru.html.markdown index 21a14aee..21940e41 100644 --- a/ru-ru/kotlin-ru.html.markdown +++ b/ru-ru/kotlin-ru.html.markdown @@ -37,7 +37,7 @@ fun main(args: Array) { В большинстве случаев Kotlin самостоятельно может определить тип переменной, поэтому нам не нужно явно указывать его каждый раз. Мы можем явно объявить тип переменной следующим образом: */ - val foo : Int = 7 + val foo: Int = 7 /* Строки могут быть представлены тем же образом, что и в Java. diff --git a/zh-cn/kotlin-cn.html.markdown b/zh-cn/kotlin-cn.html.markdown index eb69156b..5d655029 100644 --- a/zh-cn/kotlin-cn.html.markdown +++ b/zh-cn/kotlin-cn.html.markdown @@ -38,7 +38,7 @@ fun main(args: Array) { 所以我们不必要每次都去明确指定它。 我们可以像这样明确地声明一个变量的类型: */ - val foo : Int = 7 + val foo: Int = 7 /* 可以采取和Java类似的方法来表示一个字符串。 -- cgit v1.2.3