From f410bb770f5fa063d64833701ed9328fdb76f9f7 Mon Sep 17 00:00:00 2001 From: Muhammad Talal Anwar Date: Sun, 26 Jul 2020 19:16:53 +0200 Subject: [PATCH] Fix typo --- mapper.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mapper.go b/mapper.go index 9425fc6..a42bc5d 100644 --- a/mapper.go +++ b/mapper.go @@ -93,7 +93,7 @@ func (m *binaryUnmarshalerAdapter) Decode(ctx *DecodeContext, target reflect.Val // // Mappers can be associated with concrete fields via pointer, reflect.Type, reflect.Kind, or via a "type" tag. // -// Additionally, if a type implements the MappverValue interface, it will be used. +// Additionally, if a type implements the MapperValue interface, it will be used. type Mapper interface { // Decode ctx.Value with ctx.Scanner into target. Decode(ctx *DecodeContext, target reflect.Value) error