From 84220bb665af7f8b7013dfd8f6d3fd15ea8a0e37 Mon Sep 17 00:00:00 2001 From: Taiga Nakayama Date: Sat, 3 Aug 2024 16:02:07 +0900 Subject: [PATCH] docs: remove * as it should be value --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index db53c70..8d06777 100644 --- a/README.md +++ b/README.md @@ -444,7 +444,7 @@ In short: exactly as follows: ```go - func (e *yourType) Format(s *fmt.State, verb rune) { errors.FormatError(e, s, verb) } + func (e *yourType) Format(s fmt.State, verb rune) { errors.FormatError(e, s, verb) } ``` (If you do not provide this redirection for your own custom wrapper