From cb5eb336b18a27f98005314f30218ecc440dff7b Mon Sep 17 00:00:00 2001 From: Vishal Rana Date: Sun, 12 Jul 2015 08:37:40 -0700 Subject: [PATCH] Fixed type in charset=utf-8 Signed-off-by: Vishal Rana --- echo.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/echo.go b/echo.go index 26a9efab..07bdaaa0 100644 --- a/echo.go +++ b/echo.go @@ -95,8 +95,8 @@ const ( ApplicationForm = "application/x-www-form-urlencoded" ApplicationProtobuf = "application/protobuf" ApplicationMsgpack = "application/msgpack" - TextHTML = "text/html ;charset=utf-8" - TextPlain = "text/plain ;charset=utf-8" + TextHTML = "text/html; charset=utf-8" + TextPlain = "text/plain; charset=utf-8" MultipartForm = "multipart/form-data" //---------