Update Typo documentation (#2820)

pull/2821/head
Muh Ihsan Nur 2024-01-30 15:52:14 +07:00 committed by GitHub
parent 738e062d5b
commit 455405c0f2
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -1004,7 +1004,7 @@ An alternative version of the Locals method that takes advantage of Go's generic
allows for the manipulation and retrieval of local values within a request's context with a more specific data type.
```go title="Signature"
func Locals[V any](c Ctx, key any, value ...any) V
func Locals[V any](c Ctx, key any, value ...V) V
```
```go title="Example"