Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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