1
0
mirror of https://github.com/duke-git/lancet.git synced 2026-02-04 12:52:28 +08:00

fix: fix goline error

This commit is contained in:
dudaodong
2023-03-01 11:10:12 +08:00
parent 66efe61834
commit 081908bce3
6 changed files with 31 additions and 20 deletions

View File

@@ -19,11 +19,15 @@ func ExampleContext() {
return errors.New("error occurs")
}
Retry(increaseNumber,
err := Retry(increaseNumber,
RetryDuration(time.Microsecond*50),
Context(ctx),
)
if err != nil {
return
}
fmt.Println(number)
// Output: