From 631f7f1534496496c02ad1a24f52a2dd24e2938a Mon Sep 17 00:00:00 2001 From: Oleg Lobanov Date: Fri, 5 Feb 2016 20:44:47 +0400 Subject: [PATCH] fix typo --- binder.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/binder.go b/binder.go index cb1f6a2d..eaf364a4 100644 --- a/binder.go +++ b/binder.go @@ -37,7 +37,7 @@ func (b *binder) MaxMemory() int64 { func (b *binder) Bind(r *http.Request, i interface{}) (err error) { if r.Body == nil { - err = NewHTTPError(http.StatusBadRequest, "Requesr body can't be nil") + err = NewHTTPError(http.StatusBadRequest, "Request body can't be nil") return } defer r.Body.Close()