summaryrefslogtreecommitdiffhomepage
path: root/zh-cn
diff options
context:
space:
mode:
Diffstat (limited to 'zh-cn')
-rw-r--r--zh-cn/kotlin-cn.html.markdown2
1 files changed, 1 insertions, 1 deletions
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类似的方法来表示一个字符串。