Browse Source

Fix outdated ExampleMatcher docs.

Closes #2404
2.3.x
Yanming Zhou 5 years ago committed by Mark Paluch
parent
commit
41dcbdd302
No known key found for this signature in database
GPG Key ID: 4406B84C1661DCD1
  1. 2
      src/main/asciidoc/query-by-example.adoc

2
src/main/asciidoc/query-by-example.adoc

@ -110,7 +110,7 @@ person.setFirstname("Dave"); <2> @@ -110,7 +110,7 @@ person.setFirstname("Dave"); <2>
ExampleMatcher matcher = ExampleMatcher.matching() <3>
.withIgnorePaths("lastname") <4>
.withIncludeNullValues() <5>
.withStringMatcherEnding(); <6>
.withStringMatcher(StringMatcher.ENDING); <6>
Example<Person> example = Example.of(person, matcher); <7>

Loading…
Cancel
Save