Fix again

This commit is contained in:
Foil-hat-guy 2025-05-08 12:43:48 +03:00
parent f5d30ae155
commit 46d854d0e9
No known key found for this signature in database
GPG key ID: 221CC305A7B23591

View file

@ -47,7 +47,7 @@ func Join(errs ...error) (result error) {
if index == 0 {
result = err
} else {
result = fmt.Errorf("%w: %w", result, err)
result = fmt.Errorf("%w: %w", result, fmt.Errorf("foo"))
fmt.Println("1: ",result)
fmt.Println("2: ",err)
}