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 /ko-kr | |
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 'ko-kr')
-rw-r--r-- | ko-kr/kotlin-kr.html.markdown | 2 |
1 files changed, 1 insertions, 1 deletions
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와 비슷하게 표시될 수 있습니다. |