Skip to content

Commit

Permalink
Fix Docs [pkg.go.dev] Documentation (#89)
Browse files Browse the repository at this point in the history
- [+] docs(docs.go): add missing closing parenthesis to fiber middleware example
  • Loading branch information
H0llyW00dzZ authored May 30, 2024
1 parent 842b053 commit b441c15
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions docs.go
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,10 @@
// // Use the fiber.Locals middleware to set c.Locals
// app.Use(func(c *fiber.Ctx) error {
//
// // Note: c.Locals is pretty useful and can directly store values from a database.
// c.Locals("email", "[email protected]")
// return c.Next()
// // Note: c.Locals is pretty useful and can directly store values from a database.
// c.Locals("email", "[email protected]")
// return c.Next()
// })
//
// app.Use(twofa.New(twofa.Config{
// Issuer: "MyApp",
Expand Down

0 comments on commit b441c15

Please sign in to comment.