Fix documentation of default values in validation

This commit is contained in:
Frank Prößdorf 2019-01-18 09:31:56 +02:00
parent 8f0809318d
commit 2793bc2be4
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. /// 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, pub validate_iat: bool,
/// Whether to validate the `nbf` field. /// Whether to validate the `nbf` field.
/// ///
/// It will return an error if the current timestamp is before the time in 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, pub validate_nbf: bool,
/// If it contains a value, the validation will check that the `aud` field is the same as the /// If it contains a value, the validation will check that the `aud` field is the same as the
/// one provided and will error otherwise. /// one provided and will error otherwise.