From 09a24ce72045e2b5e14a36ef2bcfb65848a9499b Mon Sep 17 00:00:00 2001 From: Dan Jones Date: Fri, 14 Nov 2025 15:11:26 -0600 Subject: [PATCH] =?UTF-8?q?=F0=9F=93=9D=20Rename=20example=20tests=20for?= =?UTF-8?q?=20godoc=20visibility?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- example_test.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/example_test.go b/example_test.go index 5e30d21..00320d5 100644 --- a/example_test.go +++ b/example_test.go @@ -42,7 +42,7 @@ func Example() { // something went wrong in goroutine 2 } -func ExampleWaitErr_WaitForError() { +func Example_waitForError() { we := waiterr.New() we.Go(func() error { time.Sleep(100 * time.Millisecond) @@ -62,7 +62,7 @@ func ExampleWaitErr_WaitForError() { } -func ExampleWaitErr_Unwrap() { +func Example_unwrap() { we := waiterr.New() we.Go(func() error { time.Sleep(100 * time.Millisecond)