remove incorrect comment
diff --git a/errors.go b/errors.go index d98f310..75780c9 100644 --- a/errors.go +++ b/errors.go
@@ -157,9 +157,6 @@ // Wrap returns an error annotating err with message. // If err is nil, Wrap returns nil. -// Wrap is conceptually the same as calling -// -// errors.WithStack(errors.WithMessage(err, msg)) func Wrap(err error, message string) error { if err == nil { return nil @@ -176,9 +173,6 @@ // Wrapf returns an error annotating err with the format specifier. // If err is nil, Wrapf returns nil. -// Wrapf is conceptually the same as calling -// -// errors.WithStack(errors.WithMessage(err, format, args...)) func Wrapf(err error, format string, args ...interface{}) error { if err == nil { return nil