From 9595c3a8febed01ea23e58d9a44f7dda0ab15bbd Mon Sep 17 00:00:00 2001 From: Andrew Murray Date: Sat, 13 Aug 2016 00:22:09 +1000 Subject: [PATCH] Fixed typos --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 99094a6..527eddc 100644 --- a/README.md +++ b/README.md @@ -11,7 +11,7 @@

get a json value quickly

-GJSON is a Go package the provides a [very fast](#performance) and simple way to get a value from a json document. The reason for this library it to give efficent json indexing for the [BuntDB](https://github.com/tidwall/buntdb) project. +GJSON is a Go package the provides a [very fast](#performance) and simple way to get a value from a json document. The reason for this library it to give efficient json indexing for the [BuntDB](https://github.com/tidwall/buntdb) project. Getting Started =============== @@ -48,8 +48,8 @@ This will print: Prichard ``` -A path is a series of keys seperated by a dot. A key may contain special wildcard characters '*' and '?'. To access an array value use the index as the key. To get the number of elements in an array use the '#' character. -The dot and wildcard characted can be escaped with '\'. +A path is a series of keys separated by a dot. A key may contain special wildcard characters '*' and '?'. To access an array value use the index as the key. To get the number of elements in an array use the '#' character. +The dot and wildcard character can be escaped with '\'. ``` { "name": {"first": "Tom", "last": "Anderson"},