Update ch3-06-2.md

pull/4/head
custa 2016-08-15 11:27:54 +08:00 committed by GitHub
parent 35b39b662d
commit 6f5cf0f489
1 changed files with 1 additions and 1 deletions

View File

@ -69,7 +69,7 @@ const (
)
```
对于一个没有显式类型的变量声明语法(包括短变量声明语法),无类型的常量会被隐式转为默认的变量类型,就像下面的例子:
对于一个没有显式类型的变量声明(包括简短变量声明),常量的形式将隐式决定变量的默认类型,就像下面的例子:
```Go
i := 0 // untyped integer; implicit int(0)