Skip to content

Commit

Permalink
Fix parentheses in Readme (#822)
Browse files Browse the repository at this point in the history
  • Loading branch information
jkostolansky authored Nov 9, 2021
1 parent 665063e commit 22b4d6c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -959,7 +959,7 @@ Main methods of the request DSL are: `query`, `filter` and `post_filter`, it is
```ruby
CitiesIndex
.filter(term: {name: 'Bangkok'})
.query { match name: 'London' }
.query(match: {name: 'London'})
.query.not(range: {population: {gt: 1_000_000}})
```

Expand Down

0 comments on commit 22b4d6c

Please sign in to comment.