From a50db78a712f96e7dfeea755e72ae2089ea296f8 Mon Sep 17 00:00:00 2001 From: Bruce Lau Date: Wed, 18 Dec 2024 19:10:50 +0000 Subject: [PATCH] fix pointers.go missing "closing curly brace" Missing "closing curly brace" because translation typo --- _content/tour/moretypes/pointers.go | 1 + 1 file changed, 1 insertion(+) diff --git a/_content/tour/moretypes/pointers.go b/_content/tour/moretypes/pointers.go index 3d835177..7d814b27 100644 --- a/_content/tour/moretypes/pointers.go +++ b/_content/tour/moretypes/pointers.go @@ -15,3 +15,4 @@ func main() { p = &j // 指向 j *p = *p / 37 // 通过指针对 j 进行除法运算 fmt.Println(j) // 查看 j 的值 +}