Skip to content

Commit

Permalink
Minor typo fix
Browse files Browse the repository at this point in the history
  • Loading branch information
lhazlewood committed Jan 28, 2024
1 parent ae40ebc commit b52561c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2835,9 +2835,9 @@ You create a JWK Set as follows:
For example:
```java
Jwk<?> jwk1 = Jwks.builder()./* ... */.build();
Jwk<?> jwk = Jwks.builder()/* ... */.build();
SecretJwk = Jwks.set() // 1
.add(jwk1) // 2, appends a key
.add(jwk) // 2, appends a key
//.add(aCollection) // append multiple keys
//.keys(allJwks) // sets/replaces all keys
//.add("aName", "aValue") // 3, optional
Expand Down

0 comments on commit b52561c

Please sign in to comment.