Skip to content

Commit

Permalink
refactor(readme): Correct typo
Browse files Browse the repository at this point in the history
  • Loading branch information
gaebel committed Sep 8, 2020
1 parent 54c4d1b commit e06578a
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -105,9 +105,11 @@ More info about this in the [official documentation](https://docs.aws.amazon.com
getUser(accessToken = "TOKEN_FROM_SIGN_IN_REQUEST"): Result<GetUserResponse>
```

#### Claims
#### Get Claims

Parses the ID token to a Claims object (e.g. to access the sub id or email address). Not generic, refer to the Claims class to see which parameters are supported.
Parses the ID token to a Claims object (e.g. to access the sub id or email address).

> Not generic, refer to the Claims class to see which parameters are supported.
```kotlin
getClaims(fromIdToken = "ID_TOKEN_FROM_SIGN_IN_REQUEST"): Result<Claims>
Expand Down

0 comments on commit e06578a

Please sign in to comment.