From 5cf89d77b1e1a60870058034a6441036a82f8902 Mon Sep 17 00:00:00 2001 From: hasheddan Date: Wed, 7 Oct 2020 19:26:28 -0500 Subject: [PATCH] Fix minor typo in README Corrects mapperss to mappers. Signed-off-by: hasheddan --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 3dea00e..5033807 100644 --- a/README.md +++ b/README.md @@ -539,7 +539,7 @@ type Mapper interface { // Decode scan into target. // // "ctx" contains context about the value being decoded that may be useful - // to some mapperss. + // to some mappers. Decode(ctx *MapperContext, scan *Scanner, target reflect.Value) error } ```