From 4f589f452541c3119db6717df83e839e7c1ed4c1 Mon Sep 17 00:00:00 2001 From: Nick Zana Date: Sun, 25 Jun 2023 21:00:46 -0400 Subject: [PATCH] ctap2-proto: fix typo in Command enum variant --- crates/ctap2-proto/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/ctap2-proto/src/lib.rs b/crates/ctap2-proto/src/lib.rs index 7cbed44..2ab2d34 100644 --- a/crates/ctap2-proto/src/lib.rs +++ b/crates/ctap2-proto/src/lib.rs @@ -86,5 +86,5 @@ pub enum Command { AuthenticatorLargeBlobs = 0x0C, AuthenticatorConfig = 0x0D, PrototypeAuthenticatorBioEnrollment = 0x40, - PrototypeAuthenticatorCredentialmanagement = 0x41, + PrototypeAuthenticatorCredentialManagement = 0x41, }