Skip to content

Commit

Permalink
bump version of fixes #79 #80 #81
Browse files Browse the repository at this point in the history
  • Loading branch information
Jan Seidl committed Jan 3, 2023
1 parent 50ad89e commit c65eeae
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand All @@ -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

Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
4.3.1
4.3.2

0 comments on commit c65eeae

Please sign in to comment.