mirror of
https://github.com/gofiber/fiber.git
synced 2025-07-09 03:58:51 +00:00
removing useless space in the russian readme
This commit is contained in:
parent
58cd2fd8b3
commit
8cd8b084b8
4
.github/README_ru.md
vendored
4
.github/README_ru.md
vendored
@ -204,7 +204,7 @@ func main() {
|
||||
app.Static("./public")
|
||||
|
||||
// Последний middleware
|
||||
app.Use(func (c *fiber.Ctx) {
|
||||
app.Use(func(c *fiber.Ctx) {
|
||||
c.SendStatus(404) // => 404 "Not Found"
|
||||
})
|
||||
|
||||
@ -224,7 +224,7 @@ func main() {
|
||||
}
|
||||
|
||||
// Сериализация JSON
|
||||
app.Get("/json", func (c *fiber.Ctx) {
|
||||
app.Get("/json", func(c *fiber.Ctx) {
|
||||
c.JSON(&User{"John", 20})
|
||||
})
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user