acd4ffff35
* chore(atomicx): review docs and add usage example * chore(fsx): improve docs, return value, add examples * fix(kvstore): correct typo and add example * fix(multierror): add basic example * doc: revamp ooapi documentation
17 lines
268 B
Go
17 lines
268 B
Go
package multierror_test
|
|
|
|
import (
|
|
"errors"
|
|
"fmt"
|
|
|
|
"github.com/ooni/probe-cli/v3/internal/multierror"
|
|
)
|
|
|
|
func ExampleUnion() {
|
|
root := errors.New("some error")
|
|
me := multierror.New(root)
|
|
check := errors.Is(me, root)
|
|
fmt.Printf("%+v\n", check)
|
|
// Output: true
|
|
}
|