diff --git a/README.md b/README.md index bf2f648..dcda9a1 100644 --- a/README.md +++ b/README.md @@ -180,8 +180,8 @@ func (e Error) Is(target error) bool ```go func (e Error) Unwrap() error ``` -Unwrap the last error for compatible with the `errors.Unwrap()` when you need -unwrap all erros, you should use `WrappedErrors()` instead +Unwrap the last error for compatibility with `errors.Unwrap()`. When you need to +unwrap all errors, you should use `WrappedErrors()` instead. err := Do( func() error { @@ -192,7 +192,7 @@ unwrap all erros, you should use `WrappedErrors()` instead fmt.Println(errors.Unwrap(err)) # "original error" is printed -added in version 4.2.0 +Added in version 4.2.0. #### func (Error) WrappedErrors diff --git a/VERSION b/VERSION index f77856a..cc2fbe8 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -4.3.1 +4.3.2