From dd4e25c11bc4319b4407eac4b0d15f66c8925de6 Mon Sep 17 00:00:00 2001 From: Lucas Garron Date: Tue, 16 Jan 2018 14:56:13 -0800 Subject: [PATCH] Fix typo in an error.go comment: "is adds" -> "adds". License: MIT Signed-off-by: Lucas Garron --- core/commands/e/error.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/commands/e/error.go b/core/commands/e/error.go index c8bfa11c14f..6bc1bbf6393 100644 --- a/core/commands/e/error.go +++ b/core/commands/e/error.go @@ -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