From e6a14a879ae2fa2a76fbb6d086535c9ac7114016 Mon Sep 17 00:00:00 2001 From: kiyon Date: Mon, 28 Sep 2020 13:12:54 +0800 Subject: [PATCH] =?UTF-8?q?=F0=9F=93=9A=20fix=20typo?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- middleware/compress/README.md | 2 +- middleware/pprof/README.md | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/middleware/compress/README.md b/middleware/compress/README.md index 11e6a1f4..1b5467cb 100644 --- a/middleware/compress/README.md +++ b/middleware/compress/README.md @@ -14,7 +14,7 @@ func New(config ...Config) fiber.Handler ``` ### Examples -Import the compress package that is part of the Fiber web framework +Import the middleware package that is part of the Fiber web framework ```go import ( "github.com/gofiber/fiber/v2" diff --git a/middleware/pprof/README.md b/middleware/pprof/README.md index 42163ca6..f0e8c736 100644 --- a/middleware/pprof/README.md +++ b/middleware/pprof/README.md @@ -10,7 +10,7 @@ func New() fiber.Handler ``` ### Example -Import the compress package that is part of the Fiber web framework +Import the middleware package that is part of the Fiber web framework ```go import ( "github.com/gofiber/fiber/v2" @@ -22,4 +22,4 @@ After you initiate your Fiber app, you can use the following possibilities: ```go // Default middleware app.Use(pprof.New()) -``` \ No newline at end of file +```