Skip to content

Commit

Permalink
update data code
Browse files Browse the repository at this point in the history
  • Loading branch information
zcool321 committed Feb 24, 2021
1 parent c58a6e3 commit 52738f6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion doc/07.golang常用数据结构.md
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ func slice() {
// Slice 支持通过 slice[low:high] 语法进行“切片”操作。例如,这里得到一个包含元素 test1[2], test1[3],test1[4] 的 slice。
l := test1[2:5]
fmt.Println("切片1:", l)
// 这个 slice 从 test1[0] 到(但是包含)test1[5]。
// 这个 slice 从 test1[0] 到(但是不包含)test1[5]。
l = test1[:5]
fmt.Println("切片2:", l)
// 这个 slice 从(包含)test1[2] 到 slice 的后一个值。
Expand Down

0 comments on commit 52738f6

Please sign in to comment.