Skip to content

Commit

Permalink
readme fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
sckott committed May 9, 2016
1 parent f0d16d0 commit 75b19d6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
3 changes: 1 addition & 2 deletions README.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -115,8 +115,7 @@ x <- '{"user":"stedolan","titles":["JQ Primer", "More JQ"]}'
jq(x, '{user, title: .titles[]}')
x %>% index()
x %>% select(user, title = `.titles[]`)
x %>% select(user, title = `.titles[]`) %>% combine
x %>% select(user, title = `.titles[]`) %>% combine %>% jsonlite::validate()
jq(x, '{user, title: .titles[]}') %>% jsonlite::toJSON() %>% jsonlite::validate()
```

#### string operations
Expand Down
3 changes: 1 addition & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -166,8 +166,7 @@ x <- '{"user":"stedolan","titles":["JQ Primer", "More JQ"]}'
jq(x, '{user, title: .titles[]}')
x %>% index()
x %>% select(user, title = `.titles[]`)
x %>% select(user, title = `.titles[]`) %>% combine
x %>% select(user, title = `.titles[]`) %>% combine %>% jsonlite::validate()
jq(x, '{user, title: .titles[]}') %>% jsonlite::toJSON() %>% jsonlite::validate()
```

#### string operations
Expand Down

0 comments on commit 75b19d6

Please sign in to comment.