From 23d7f37f0ee22a38fffd17ca93012e6da267b4f4 Mon Sep 17 00:00:00 2001 From: Alexandr Burdiyan Date: Sun, 4 Sep 2022 21:38:52 +0200 Subject: [PATCH] Apply code review suggestions Co-authored-by: Sung Yoon Whang --- error.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/error.go b/error.go index 4019cd9..e68200a 100644 --- a/error.go +++ b/error.go @@ -663,7 +663,7 @@ func AppendInvoke(into *error, invoker Invoker) { // AppendFunc is a shorthand for [AppendInvoke]. // It allows using function or method value directly -// without having to wrap it into an Invoker interface. +// without having to wrap it into an [Invoker] interface. func AppendFunc(into *error, fn func() error) { AppendInvoke(into, Invoke(fn)) }