Merge pull request #2049 from wonwoo

* pr/2049:
  Fix typo in javadoc
This commit is contained in:
Stephane Nicoll
2018-12-12 08:00:48 +01:00

View File

@@ -40,7 +40,7 @@ import org.springframework.util.StringUtils;
* <p>Composability methods on {@link Predicate} can be used :
* <pre class="code">
* Predicate&lt;Class&lt;?&gt;&gt; predicate =
* HandlerTypePredicate.forAnnotation(RestController)
* HandlerTypePredicate.forAnnotation(RestController.class)
* .and(HandlerTypePredicate.forBasePackage("org.example"));
* </pre>
*