Skip to content

Commit dc27051

Browse files
authored
Fix typo in documentation
Fixed typo in documentation.
2 parents 09e8ae4 + 8948ba3 commit dc27051

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/manual/src/docs/asciidoc/_includes/servlet/preface/java-configuration.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -705,7 +705,7 @@ We can override this quite simply to alter the way granted authorities are deriv
705705

706706
```java
707707
static class GrantedAuthoritiesExtractor extends JwtAuthenticationConverter {
708-
protected Collection<GrantedAuthorities> extractAuthorities(Jwt jwt) {
708+
protected Collection<GrantedAuthority> extractAuthorities(Jwt jwt) {
709709
Collection<String> authorities = (Collection<String>)
710710
jwt.getClaims().get("mycustomclaim");
711711

0 commit comments

Comments
 (0)