You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The returned value is valid only within the handler. Do not store references.
181
+
The returned value is valid only within the handler. Do not store references.
182
182
Make copies or use the [**`Immutable`**](./fiber.md#immutable) setting instead. [Read more...](../#zero-allocation)
183
183
:::
184
184
@@ -270,7 +270,7 @@ Make sure to understand and correctly implement the `Locals` method in both its
270
270
271
271
### Next
272
272
273
-
When **Next** is called, it executes the next method in the stack that matches the current route. You can pass an error struct within the method that will end the chaining and call the [error handler](https://docs.gofiber.io/guide/error-handling).
273
+
When **Next** is called, it executes the next method in the stack that matches the current route. You can pass an error struct within the method that will end the chaining and call the [error handler](../guide/error-handling).
274
274
275
275
```go title="Signature"
276
276
func(cfiber.Ctx) Next() error
@@ -600,7 +600,7 @@ Media-Type parameters are supported.
Returns a slice with the host’s sub-domain labels. The dot-separated parts that precede the registrable domain (`example`) and the top-level domain (ex: `com`).
1487
1487
1488
-
The `subdomain offset` (default `2`) tells Fiber how many labels, counting from the right-hand side, are always discarded.
1488
+
The `subdomain offset` (default `2`) tells Fiber how many labels, counting from the right-hand side, are always discarded.
1489
1489
Passing an `offset` argument lets you override that value for a single call.
1490
1490
1491
1491
```go
@@ -1821,7 +1821,7 @@ when they regain control after calling `c.Next()`.
Copy file name to clipboardExpand all lines: docs/core/middleware/recover.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,7 +4,7 @@ id: recover
4
4
5
5
# Recover
6
6
7
-
The Recover middleware for [Fiber](https://github.com/gofiber/fiber) intercepts panics and forwards them to the central [ErrorHandler](https://docs.gofiber.io/guide/error-handling).
7
+
The Recover middleware for [Fiber](https://github.com/gofiber/fiber) intercepts panics and forwards them to the central [ErrorHandler](../guide/error-handling).
This middleware uses the shared extractors module for session ID extraction. See the [Extractors Guide](https://docs.gofiber.io/guide/extractors) for more details.
301
+
This middleware uses the shared extractors module for session ID extraction. See the [Extractors Guide](../guide/extractors) for more details.
0 commit comments