From f1a7cac87d9376ce77b689fa0e99e96d6ad7c8a8 Mon Sep 17 00:00:00 2001 From: Hossein Zolfi Date: Sat, 29 Jun 2024 20:53:29 +0330 Subject: [PATCH 1/2] Update addressable href links to target valid anchors --- style.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/style.md b/style.md index 21a1733a..d0073737 100644 --- a/style.md +++ b/style.md @@ -200,7 +200,7 @@ func (h LogHandler) ServeHTTP( ### Receivers and Interfaces Methods with value receivers can be called on pointers as well as values. -Methods with pointer receivers can only be called on pointers or [addressable values](https://go.dev/ref/spec#Method_values). +Methods with pointer receivers can only be called on pointers or [addressable values](https://go.dev/ref/spec#Address_operators). For example, From a921a746712cdc690c403995cfd9f449ee9a7a67 Mon Sep 17 00:00:00 2001 From: empire Date: Sat, 29 Jun 2024 17:23:57 +0000 Subject: [PATCH 2/2] Auto-update style.md --- style.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/style.md b/style.md index d0073737..21a1733a 100644 --- a/style.md +++ b/style.md @@ -200,7 +200,7 @@ func (h LogHandler) ServeHTTP( ### Receivers and Interfaces Methods with value receivers can be called on pointers as well as values. -Methods with pointer receivers can only be called on pointers or [addressable values](https://go.dev/ref/spec#Address_operators). +Methods with pointer receivers can only be called on pointers or [addressable values](https://go.dev/ref/spec#Method_values). For example,