diff --git a/identity_stronghold/src/stronghold_jwk_storage.rs b/identity_stronghold/src/stronghold_jwk_storage.rs index 1062d949af..16f25584b6 100644 --- a/identity_stronghold/src/stronghold_jwk_storage.rs +++ b/identity_stronghold/src/stronghold_jwk_storage.rs @@ -62,7 +62,7 @@ impl StrongholdStorage { pub(crate) async fn get_stronghold(&self) -> MutexGuard<'_, Stronghold> { match *self.0 { SecretManager::Stronghold(ref stronghold) => stronghold.inner().await, - _ => unreachable!("secret manager can be only constrcuted from stronghold"), + _ => unreachable!("secret manager can be only constructed from stronghold"), } }