Skip to content
Open
Show file tree
Hide file tree
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
4 changes: 2 additions & 2 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ There are many ways to contribute, from writing tutorials or blog posts, improvi

## Sign the Contributor License Agreement

We do ask that you sign the [Contiributor License Agreement](https://www.elastic.co/contributor-agreement)
before we can accept pull requests from you.
Please sign the [Contiributor License Agreement](https://www.elastic.co/contributor-agreement)
before you open a PR. We verify signatures in a GitHub workflow and will be unable to accept any PR from a contributor that has not signed the document.

## Development

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -121,8 +121,7 @@ public void searchNested() throws Exception {
.index("products")
.query(q -> q
.bool(b -> b // <4>
.must(byName) // <5>
.must(byMaxPrice)
.must(byName, byMaxPrice) // <5>
)
),
Product.class
Expand Down