summaryrefslogtreecommitdiffhomepage
path: root/ru-ru
diff options
context:
space:
mode:
authorJoão Vitor Verona Biazibetti <joaaoverona@gmail.com>2017-05-19 18:34:27 -0300
committerven <vendethiel@hotmail.fr>2017-05-19 23:34:27 +0200
commitd30d6f69ca07014efdce95d771403a43423d2143 (patch)
tree5311992d6c3bbab9ea0db1f1b5aa865f47644334 /ru-ru
parent81a388747a5e23b29e96b6624f5b919eb2ab46fa (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)
Diffstat (limited to 'ru-ru')
-rw-r--r--ru-ru/kotlin-ru.html.markdown2
1 files changed, 1 insertions, 1 deletions
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.