mirror of
https://github.com/gofiber/fiber.git
synced 2025-02-22 12:33:42 +00:00
removing useless space in the korean readme
This commit is contained in:
parent
d3feea9e98
commit
a7866e8f20
4
.github/README_ko.md
vendored
4
.github/README_ko.md
vendored
@ -203,7 +203,7 @@ func main() {
|
||||
app.Static("./public")
|
||||
|
||||
// Last middleware
|
||||
app.Use(func (c *fiber.Ctx) {
|
||||
app.Use(func(c *fiber.Ctx) {
|
||||
c.SendStatus(404) // => 404 "Not Found"
|
||||
})
|
||||
|
||||
@ -223,7 +223,7 @@ func main() {
|
||||
}
|
||||
|
||||
// Serialize 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