1
0
mirror of https://github.com/golang/go synced 2024-11-26 05:17:58 -07:00

net/http: fix typo in ErrMissingBoundary

R=golang-dev, bradfitz
CC=golang-dev
https://golang.org/cl/8429045
This commit is contained in:
Jonathan Rudenberg 2013-04-05 15:23:03 -07:00 committed by Brad Fitzpatrick
parent 2d3216f4a8
commit 07c70629c2

View File

@ -48,7 +48,7 @@ var (
ErrUnexpectedTrailer = &ProtocolError{"trailer header without chunked transfer encoding"}
ErrMissingContentLength = &ProtocolError{"missing ContentLength in HEAD response"}
ErrNotMultipart = &ProtocolError{"request Content-Type isn't multipart/form-data"}
ErrMissingBoundary = &ProtocolError{"no multipart boundary param Content-Type"}
ErrMissingBoundary = &ProtocolError{"no multipart boundary param in Content-Type"}
)
type badStringError struct {