diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 30a39b439..f4d75c286 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -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 diff --git a/java-client/src/test/java/co/elastic/clients/documentation/usage/SearchingTest.java b/java-client/src/test/java/co/elastic/clients/documentation/usage/SearchingTest.java index cf02ca0bb..bf8b1bfb4 100644 --- a/java-client/src/test/java/co/elastic/clients/documentation/usage/SearchingTest.java +++ b/java-client/src/test/java/co/elastic/clients/documentation/usage/SearchingTest.java @@ -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