From 324d2717f388e9dc9fbad064f83c94724496962f Mon Sep 17 00:00:00 2001 From: matsuyoshi30 Date: Mon, 18 Sep 2023 23:41:51 +0900 Subject: [PATCH] Fix link --- docs/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/index.md b/docs/index.md index 4955e29..0c0b846 100644 --- a/docs/index.md +++ b/docs/index.md @@ -475,7 +475,7 @@ When using slicing, we must remember that we can face a situation leading to uni `s[low:high:max]` (full slice expression): This statement creates a slice similar to the one created with `s[low:high]`, except that the resulting slice’s capacity is equal to `max - low`. - [Source code](https://github.com/teivah/100-go-mistakes/tree/master/src/03-data-types/25-slice-append/main.go) + [Source code](https://github.com/teivah/100-go-mistakes/tree/master/src/03-data-types/25-slice-append/25-slice-append.go) ### Slices and memory leaks (#26)