Skip to content

Commit

Permalink
Merge branch 'master' of ssh://github.com/antchfx/jsonquery
Browse files Browse the repository at this point in the history
  • Loading branch information
zhengchun committed May 8, 2020
2 parents 35abdcf + cbed04f commit b9c6be3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -63,13 +63,13 @@ book := jsonquery.Find(doc, "//book/*[3]")
book := jsonquery.Find(doc, "//book/*[last()]")
```

#### Find all books with isbn number.
#### Find all books that have an isbn number.

```go
list := jsonquery.Find(doc, "//book/*[isbn]")
```

#### Find all books cheapier than 10.
#### Find all books priced less than 10.

```go
list := jsonquery.Find(doc, "//book/*[price<10]")
Expand Down Expand Up @@ -118,7 +118,7 @@ func main() {

Implement Principle
===
If you are familiar with XPath and XML, you can quick start to known how
If you are familiar with XPath and XML, you can easily figure out how to
write your XPath expression.

```json
Expand Down

0 comments on commit b9c6be3

Please sign in to comment.