📚 Docs: fix bad documentation on queries function (#2522)

pull/2530/head
Iliya 2023-06-27 18:50:50 +03:30 committed by GitHub
parent f68ec0dfbb
commit 5c1e8a9cff
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -1076,7 +1076,7 @@ app.Get("/", func(c *fiber.Ctx) error {
Queries is a function that returns an object containing a property for each query string parameter in the route.
```go title="Signature"
func (c *Ctx) Queries() (map[string]string, error)
func (c *Ctx) Queries() map[string]string
```
```go title="Example"