From 834179e5f37c980f596c570581da557ec5c4bc1e Mon Sep 17 00:00:00 2001 From: Kesavan Yogeswaran Date: Sun, 7 Jun 2020 14:56:14 -0400 Subject: [PATCH] Fix typo in the AskForPermissionsConsent card name --- src/response.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/response.rs b/src/response.rs index b842f66..c4eb290 100644 --- a/src/response.rs +++ b/src/response.rs @@ -189,7 +189,7 @@ impl fmt::Display for CardType { CardType::Simple => "Simple", CardType::Standard => "Standard", CardType::LinkAccount => "LinkAccount", - CardType::AskForPermission => "AskForPermissonConsent", + CardType::AskForPermission => "AskForPermissionsConsent", }; write!(f, "{}", s) }