From 5a4586c9d8cd0c27411e92fcdda0f8112ccab89b Mon Sep 17 00:00:00 2001 From: Tiago Peczenyj Date: Sun, 5 Nov 2023 23:35:23 +0100 Subject: [PATCH] Fix typo in README.md Remove extra r in xerrors pkg name --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 23675ca..9f21e13 100644 --- a/README.md +++ b/README.md @@ -16,7 +16,7 @@ errors.Wrap(err, "message") * Using `Wrap` is the most explicit way to wrap errors * Wrapping with `fmt.Errorf("foo: %w", err)` is implicit, redundant and error-prone * Parsing `"foo: %w"` is implicit, redundant and slow -* The [pkg/errors](https://github.com/pkg/errors) and [xerrrors](https://pkg.go.dev/golang.org/x/xerrors) are not maintainted +* The [pkg/errors](https://github.com/pkg/errors) and [xerrors](https://pkg.go.dev/golang.org/x/xerrors) are not maintainted * The [cockroachdb/errors](https://github.com/cockroachdb/errors) is too big * The `errors` has no caller stack trace