aboutsummaryrefslogtreecommitdiff
path: root/libgo/go/errors/wrap.go
diff options
context:
space:
mode:
Diffstat (limited to 'libgo/go/errors/wrap.go')
-rw-r--r--libgo/go/errors/wrap.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/libgo/go/errors/wrap.go b/libgo/go/errors/wrap.go
index 272d056..b82ca34 100644
--- a/libgo/go/errors/wrap.go
+++ b/libgo/go/errors/wrap.go
@@ -70,7 +70,7 @@ func Is(err, target error) bool {
// setting target.
//
// An error type might provide an As method so it can be treated as if it were a
-// a different error type.
+// different error type.
//
// As panics if target is not a non-nil pointer to either a type that implements
// error, or to any interface type.