1
0
mirror of https://github.com/duke-git/lancet.git synced 2026-03-01 00:35:28 +08:00

doc: normalize documents

This commit is contained in:
dudaodong
2023-02-06 11:42:03 +08:00
parent ebe494051b
commit 8e3911833d
24 changed files with 382 additions and 382 deletions

View File

@@ -42,7 +42,7 @@ import (
func Context(ctx context.Context)
```
<b>例:</b>
<b>例:</b>
```go
import (
@@ -89,7 +89,7 @@ func main() {
type RetryFunc func() error
```
<b>例:</b>
<b>例:</b>
```go
package main
@@ -135,7 +135,7 @@ func main() {
func RetryTimes(n uint)
```
<b>例:</b>
<b>例:</b>
```go
package main
@@ -178,7 +178,7 @@ func main() {
func RetryDuration(d time.Duration)
```
<b>例:</b>
<b>例:</b>
```go
package main
@@ -224,7 +224,7 @@ func main() {
func Retry(retryFunc RetryFunc, opts ...Option) error
```
<b>例:</b>
<b>例:</b>
```go
package main