From c6030e3303f86855f0404394dc9555afce3ba673 Mon Sep 17 00:00:00 2001 From: Adrian Lynch Date: Mon, 21 Mar 2016 15:25:37 +0000 Subject: [PATCH] Fix typo --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index e14058c4..de07f900 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,7 @@ It does not require you to know the structure of the payload (eg. create structs ## Rationale Originally I made this for a project that relies on a lot of 3rd party APIs that can be unpredictable and complex. I love simplicity and prefer to avoid external dependecies. `encoding/json` requires you to know exactly your data structures, or if you prefer to use `map[string]interface{}` instead, it will be very slow and hard to manage. -I investigated what's on the market and found that most of libraries are just wrappers around `encoding/json`, the only package that had its own parser is `ffjson` (and it is awesome), but it still requires you to create data structures. +I investigated what's on the market and found that most libraries are just wrappers around `encoding/json`, the only package that had its own parser is `ffjson` (and it is awesome), but it still requires you to create data structures. Let's be honest, JSON is not the hardest format to parse, so i wrote one that focuses on simplicity and performance. ## Example