From e91b02b34537d02f71f5e398ba6102699959aaea Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?M=2E=20Efe=20=C3=87etin?= Date: Wed, 26 Jul 2023 14:27:45 +0300 Subject: [PATCH] :memo: docs: fix wrong JSON docs (#2554) --- docs/api/ctx.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/api/ctx.md b/docs/api/ctx.md index 47966a56cc..aa48c60929 100644 --- a/docs/api/ctx.md +++ b/docs/api/ctx.md @@ -709,7 +709,7 @@ app.Get("/", func(c *fiber.Ctx) error { ## JSON -Converts any **interface** or **string** to JSON using the [goccy/go-json](https://github.com/goccy/go-json) package. +Converts any **interface** or **string** to JSON using the [encoding/json](https://pkg.go.dev/encoding/json) package. :::info JSON also sets the content header to **application/json**.