From e7d66c6d17d80788990e72c20fb83a6a876d9f28 Mon Sep 17 00:00:00 2001 From: guonaihong Date: Wed, 4 Sep 2019 09:00:59 +0800 Subject: [PATCH] fix word misspelling --- binding/plain.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/binding/plain.go b/binding/plain.go index e87e5903..0c133323 100644 --- a/binding/plain.go +++ b/binding/plain.go @@ -43,5 +43,5 @@ func (plainBinding) Bind(req *http.Request, obj interface{}) error { return nil } - return fmt.Errorf("type (%T) unkown type", v) + return fmt.Errorf("type (%T) unknown type", v) }