updates new .png file

fix some words.
This commit is contained in:
Wenlei
2012-10-12 23:16:44 +08:00
parent 581a62bf88
commit 1902ce44aa
2 changed files with 2 additions and 2 deletions

4
2.2.md
View File

@@ -343,8 +343,8 @@ slice有一些简便的操作
- 长度,即`slice`的长度
- 最大长度,也就是`slice`开始位置到数组的最后位置的长度
array := [10]byte {'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j'}
slice := A[4:8]
array := [11]byte {'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j''k'}
slice := A[2:5]
上面代码的真正存储结构如下图所示