From 1bac0ab2d1d656e4721e06055bdf812809040432 Mon Sep 17 00:00:00 2001 From: empire Date: Sat, 29 Jun 2024 17:41:49 +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,