From 9e4d4cb52c33cf7609b763514d1d0e40944ee7e6 Mon Sep 17 00:00:00 2001 From: empire Date: Sat, 29 Jun 2024 17:49:58 +0000 Subject: [PATCH] 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,