Hello bradfitz (cc: golang-dev@googlegroups.com), I'd like you to review this change to https://go.googlecode.com/hg
*** Submitted as http://code.google.com/p/go/source/detail?r=bd049019f550 *** mime: fix build R=bradfitz CC=golang-dev http://codereview.appspot.com/4695060
LGTM
LGTM On Wed, Jul 13, 2011 at 8:04 PM, <rsc@golang.org> wrote: > Reviewers: bradfitz, > > Message: > Hello bradfitz (cc: golang-dev@googlegroups.com), > > I'd like you to review this change to > https://go.googlecode.com/hg > > > Description: > mime: fix build > > Please review this at http://codereview.appspot.com/**4695060/<http://codereview.appspot.com/4695060/> > > Affected files: > M src/pkg/mime/type.go > > > Index: src/pkg/mime/type.go > ==============================**==============================**======= > --- a/src/pkg/mime/type.go > +++ b/src/pkg/mime/type.go > @@ -19,7 +19,7 @@ > } > > var mimeTypes = map[string]string{ > - ".css": "text/css", > + ".css": "text/css; charset=utf-8", > ".gif": "image/gif", > ".htm": "text/html; charset=utf-8", > ".html": "text/html; charset=utf-8", > > >