Skip to content

Update example Java used in searching.asciidoc #399

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
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
@@ -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

Original file line number Diff line number Diff line change
@@ -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