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
commit 73a96c5152
1 changed files with 1 additions and 1 deletions

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