From 65749cab387dc6cfef521e7e18fefca24b1397b3 Mon Sep 17 00:00:00 2001 From: Dave Cheney Date: Tue, 10 May 2016 10:53:08 +1000 Subject: [PATCH] update package description --- README.md | 2 +- errors.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index a9f7d88..33890de 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 ``` diff --git a/errors.go b/errors.go index 7ec1c5d..5044cf1 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 //