From c2e1bc21f85f628b17b452d16f32232d8b6da89d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?mafan=EF=BC=88=E9=BA=BB=E5=87=A1=EF=BC=89?= Date: Mon, 15 Aug 2022 17:58:00 +0800 Subject: [PATCH] =?UTF-8?q?fix:=E4=BF=AE=E6=94=B9=20helloword=20=E9=94=99?= =?UTF-8?q?=E8=AF=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../2.\345\210\207\347\211\207/slice.md" | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git "a/data/2.Go\350\257\255\350\250\200\344\270\255\351\230\266/1.\344\271\235\351\230\264\347\234\237\347\273\217/2.\345\210\207\347\211\207/slice.md" "b/data/2.Go\350\257\255\350\250\200\344\270\255\351\230\266/1.\344\271\235\351\230\264\347\234\237\347\273\217/2.\345\210\207\347\211\207/slice.md" index df75dfc..c8f676b 100644 --- "a/data/2.Go\350\257\255\350\250\200\344\270\255\351\230\266/1.\344\271\235\351\230\264\347\234\237\347\273\217/2.\345\210\207\347\211\207/slice.md" +++ "b/data/2.Go\350\257\255\350\250\200\344\270\255\351\230\266/1.\344\271\235\351\230\264\347\234\237\347\273\217/2.\345\210\207\347\211\207/slice.md" @@ -9,7 +9,7 @@ func main() { s = append(s, 4) fmt.Println(a, len(a), cap(a)) - fmt.Println(s, len(s), cap(s)) // 输出:[888 2 3 4] 4 6 + fmt.Println(s, len(s), cap(s)) } ``` -- GitLab