Merge pull request #72 from endor/master

Fix documentation of default values in validation
This commit is contained in:
Vincent Prouillet 2019-02-04 18:36:48 +01:00 committed by GitHub
commit 86dce0003e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -41,13 +41,13 @@ pub struct Validation {
///
/// It will return an error if the time in the `iat` field is in the future.
///
/// Defaults to `true`.
/// Defaults to `false`.
pub validate_iat: bool,
/// Whether to validate the `nbf` field.
///
/// It will return an error if the current timestamp is before the time in the `nbf` field.
///
/// Defaults to `true`.
/// Defaults to `false`.
pub validate_nbf: bool,
/// If it contains a value, the validation will check that the `aud` field is the same as the
/// one provided and will error otherwise.