Fix typo in an error.go comment: "is adds" -> "adds".

License: MIT
Signed-off-by: Lucas Garron <code@garron.net>
This commit is contained in:
Lucas Garron 2018-01-16 14:56:13 -08:00
parent 0f68fcf608
commit dd4e25c11b

View File

@ -13,7 +13,7 @@ func TypeErr(expected, actual interface{}) error {
// compile time type check that HandlerError is an error
var _ error = New(nil)
// HandlerError is adds a stack trace to an error
// HandlerError adds a stack trace to an error
type HandlerError struct {
Err error
Stack []byte