From bd027ec620ea10d589867994ab07f608924ca78c Mon Sep 17 00:00:00 2001 From: Gabriel Augendre Date: Tue, 17 Oct 2023 18:41:10 +0200 Subject: [PATCH] fix wording in gin post --- content/posts/gin-method-not-allowed/index.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/content/posts/gin-method-not-allowed/index.md b/content/posts/gin-method-not-allowed/index.md index 97651a5..b0ee2d3 100644 --- a/content/posts/gin-method-not-allowed/index.md +++ b/content/posts/gin-method-not-allowed/index.md @@ -5,8 +5,8 @@ draft: false tags: ["go", "gin", "golang", "http", "ovh", "ovhcloud"] # Keep them short -description: "By default `gin` returns a 404 for an incorrect HTTP verb sent to a handled path. This can be fixed." -summary: "By default `gin` returns a 404 for an incorrect HTTP verb sent to a handled path. This can be fixed." +description: "" +summary: "By default gin returns a 404 for an incorrect HTTP verb sent to a handled path. This can be fixed." cover: image: "gin.jpg" @@ -19,7 +19,7 @@ cover: # TocOpen: false --- -TL;DR: by default `gin` returns a 404 for an incorrect HTTP verb sent to a handled path. Double-check the method you're using. +TL;DR: by default `gin` returns a 404 for an incorrect HTTP verb sent to a handled path. This can be fixed. Double-check the method you're using. ## 📖 Context At OVHcloud, we use [`gin-gonic/gin`](https://github.com/gin-gonic/gin) as the go-to HTTP web framework for our internal services.