From d814416a46cbb066b728cfff58d30a986bc9ddbe Mon Sep 17 00:00:00 2001 From: Dave Cheney Date: Wed, 11 May 2016 07:41:07 +1000 Subject: [PATCH] update package description (#24) --- README.md | 2 +- errors.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 2cc5165..ab07019 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # errors [![Travis-CI](https://travis-ci.org/pkg/errors.svg)](https://travis-ci.org/pkg/errors) [![GoDoc](https://godoc.org/github.com/pkg/errors?status.svg)](http://godoc.org/github.com/pkg/errors) [![Report card](https://goreportcard.com/badge/github.com/pkg/errors)](https://goreportcard.com/report/github.com/pkg/errors) -Package errors implements functions for manipulating errors. +Package errors provides simple error handling primitives. The traditional error handling idiom in Go is roughly akin to ```go diff --git a/errors.go b/errors.go index acf7230..254c6dd 100644 --- a/errors.go +++ b/errors.go @@ -1,4 +1,4 @@ -// Package errors implements functions for manipulating errors. +// Package errors provides simple error handling primitives. // // The traditional error handling idiom in Go is roughly akin to //