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 /kotlin.html.markdown | |
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)
Diffstat (limited to 'kotlin.html.markdown')
-rw-r--r-- | kotlin.html.markdown | 2 |
1 files changed, 1 insertions, 1 deletions
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. |