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)) }