summaryrefslogtreecommitdiff
path: root/vendor/golang.org/x/xerrors/doc.go
diff options
context:
space:
mode:
authordependabot-preview[bot] <27856297+dependabot-preview[bot]@users.noreply.github.com>2021-02-02 09:18:57 +0000
committerValentin Rothberg <rothberg@redhat.com>2021-02-03 11:00:57 +0100
commitc40cd1be9828c58193f1f4c3b17cab908718be00 (patch)
tree64862067dc4eafce2fc4860347f7eef3971fb407 /vendor/golang.org/x/xerrors/doc.go
parent881f3d788d48b683e674d1f9778d581370c9c11e (diff)
downloadpodman-c40cd1be9828c58193f1f4c3b17cab908718be00.tar.gz
podman-c40cd1be9828c58193f1f4c3b17cab908718be00.tar.bz2
podman-c40cd1be9828c58193f1f4c3b17cab908718be00.zip
Bump github.com/onsi/gomega from 1.10.4 to 1.10.5
Bumps [github.com/onsi/gomega](https://github.com/onsi/gomega) from 1.10.4 to 1.10.5. - [Release notes](https://github.com/onsi/gomega/releases) - [Changelog](https://github.com/onsi/gomega/blob/master/CHANGELOG.md) - [Commits](https://github.com/onsi/gomega/compare/v1.10.4...v1.10.5) Signed-off-by: dependabot-preview[bot] <support@dependabot.com> Signed-off-by: Daniel J Walsh <dwalsh@redhat.com> Signed-off-by: Valentin Rothberg <rothberg@redhat.com>
Diffstat (limited to 'vendor/golang.org/x/xerrors/doc.go')
-rw-r--r--vendor/golang.org/x/xerrors/doc.go22
1 files changed, 0 insertions, 22 deletions
diff --git a/vendor/golang.org/x/xerrors/doc.go b/vendor/golang.org/x/xerrors/doc.go
deleted file mode 100644
index eef99d9d5..000000000
--- a/vendor/golang.org/x/xerrors/doc.go
+++ /dev/null
@@ -1,22 +0,0 @@
-// Copyright 2019 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-// Package xerrors implements functions to manipulate errors.
-//
-// This package is based on the Go 2 proposal for error values:
-// https://golang.org/design/29934-error-values
-//
-// These functions were incorporated into the standard library's errors package
-// in Go 1.13:
-// - Is
-// - As
-// - Unwrap
-//
-// Also, Errorf's %w verb was incorporated into fmt.Errorf.
-//
-// Use this package to get equivalent behavior in all supported Go versions.
-//
-// No other features of this package were included in Go 1.13, and at present
-// there are no plans to include any of them.
-package xerrors // import "golang.org/x/xerrors"