Fix typo in an error.go comment: "is adds" -> "adds".
License: MIT Signed-off-by: Lucas Garron <code@garron.net>
Lucas Garron committed
Jan 16, 2018 at 14:56 UTC
dd4e25c11bc4319b4407eac4b0d15f66c8925de6
1 file changed
+1
-1
core/commands/e/error.go
+1
-1
@@ -13,7 +13,7 @@ func TypeErr(expected, actual interface{}) error {
13
// compile time type check that HandlerError is an error
14
var _ error = New(nil)
15
16
-// HandlerError is adds a stack trace to an error
16
+// HandlerError adds a stack trace to an error
17
type HandlerError struct {
18
Err error
19
Stack []byte