diff options
author | João Vitor Verona Biazibetti <joaaoverona@gmail.com> | 2017-05-19 18:34:27 -0300 |
---|---|---|
committer | ven <vendethiel@hotmail.fr> | 2017-05-19 23:34:27 +0200 |
commit | d30d6f69ca07014efdce95d771403a43423d2143 (patch) | |
tree | 5311992d6c3bbab9ea0db1f1b5aa865f47644334 | |
parent | 81a388747a5e23b29e96b6624f5b919eb2ab46fa (diff) |
[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)
-rw-r--r-- | es-es/kotlin-es.html.markdown | 2 | ||||
-rw-r--r-- | ko-kr/kotlin-kr.html.markdown | 2 | ||||
-rw-r--r-- | kotlin.html.markdown | 2 | ||||
-rw-r--r-- | ru-ru/kotlin-ru.html.markdown | 2 | ||||
-rw-r--r-- | 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<String>) { 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<String>) { 대부분의 경우, 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<String>) { 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<String>) { В большинстве случаев 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<String>) { 所以我们不必要每次都去明确指定它。 我们可以像这样明确地声明一个变量的类型: */ - val foo : Int = 7 + val foo: Int = 7 /* 可以采取和Java类似的方法来表示一个字符串。 |