Skip to content

Commit 9d3a06c

Browse files
Add docs from gofiber/fiber@80f4f99
1 parent 84beee8 commit 9d3a06c

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

β€Ždocs/core/api/bind.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -538,7 +538,7 @@ For more control over error handling, you can use the following methods.
538538

539539
If you want to handle binder errors automatically, you can use `WithAutoHandling`.
540540
If there's an error, it will return the error and set HTTP status to `400 Bad Request`.
541-
This function does NOT panic therefor you must still return on error explicitly
541+
This function does NOT panic therefore you must still return on error explicitly
542542

543543
```go title="Signature"
544544
func (b *Bind) WithAutoHandling() *Bind

β€Ždocs/core/guide/utils.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Converts a string value to a specified type, handling errors and optional defaul
1313
This function simplifies the conversion process by encapsulating error handling and the management of default values, making your code cleaner and more consistent.
1414

1515
```go title="Signature"
16-
func Convert[T any](value string, convertor func(string) (T, error), defaultValue ...T) (*T, error)
16+
func Convert[T any](value string, converter func(string) (T, error), defaultValue ...T) (*T, error)
1717
```
1818

1919
```go title="Example"

β€Ždocs/core/middleware/encryptcookie.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ This middleware encrypts cookie values and not the cookie names.
1313
## Signatures
1414

1515
```go
16-
// Intitializes the middleware
16+
// Initializes the middleware
1717
func New(config ...Config) fiber.Handler
1818

1919
// GenerateKey returns a random string of 16, 24, or 32 bytes.

β€Ždocs/core/whats_new.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
id: whats_new
3-
title: πŸ†• Whats New in v3
3+
title: πŸ†• What's New in v3
44
sidebar_position: 2
55
toc_max_heading_level: 4
66
---

0 commit comments

Comments
Β (0)