summaryrefslogtreecommitdiffhomepage
path: root/es-es
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 /es-es
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 'es-es')
-rw-r--r--es-es/kotlin-es.html.markdown2
1 files changed, 1 insertions, 1 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.