diff --git a/docs/golang_tutorial_11.md b/docs/golang_tutorial_11.md index 204e37c..3816dc1 100644 --- a/docs/golang_tutorial_11.md +++ b/docs/golang_tutorial_11.md @@ -12,7 +12,7 @@ ## 申明 -数组的类型为` n[T]`,其中 `n` 表示数组中元素的个数,`T` 表示数组中元素的类型。元素的个数 `n`也是数组类型的一部分(我们将在稍后详细讨论)。 +数组的类型为` [n]T`,其中 `n` 表示数组中元素的个数,`T` 表示数组中元素的类型。元素的个数 `n`也是数组类型的一部分(我们将在稍后详细讨论)。 有很多声明数组的方式,让我们一个一个地介绍。