From 90659514af30288ba5e542f7c5c2b6ccf3143655 Mon Sep 17 00:00:00 2001 From: Francesc Campoy Date: Sat, 31 Jan 2015 12:23:24 +0100 Subject: [PATCH] corrected case of jsonenums --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index f4b7c38..4758d1d 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # jsonenums -JSONenums is a tool to automate the creation of methods that satisfy the +jsonenums is a tool to automate the creation of methods that satisfy the `fmt.Stringer`, `json.Marshaler` and `json.Unmarshaler` interfaces. Given the name of a (signed or unsigned) integer type T that has constants defined, stringer will create a new self-contained Go source file implementing @@ -14,7 +14,7 @@ defined, stringer will create a new self-contained Go source file implementing The file is created in the same package and directory as the package that defines T. It has helpful defaults designed for use with go generate. -JSONenums is a simple implementation of a concept and the code might not be the +jsonenums is a simple implementation of a concept and the code might not be the most performant or beautiful to read. For example, given this snippet,