removed charset=utf-8 from default content-type, since it is implied by default

This commit is contained in:
Aliaksandr Valialkin
2015-11-19 11:49:12 +02:00
parent a2601c68af
commit 7bffd9aed5
+1 -1
View File
@@ -3,7 +3,7 @@ package fasthttp
var (
defaultServerName = []byte("fasthttp server")
defaultUserAgent = []byte("fasthttp client")
defaultContentType = []byte("text/plain; charset=utf-8")
defaultContentType = []byte("text/plain")
)
var (