Fix typo in javadoc

Closes gh-2049
This commit is contained in:
wonwoo
2018-12-12 09:58:36 +09:00
committed by Stephane Nicoll
parent 894044cea0
commit 9a13d93a6b

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>
*