From a40989b6b3c8848aec63c08328ea90915d0f4d7e Mon Sep 17 00:00:00 2001 From: Luke Date: Mon, 27 Oct 2025 16:06:55 -0400 Subject: [PATCH] Typo fix (#1217) --- crates/cdk-common/src/database/mint/mod.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/crates/cdk-common/src/database/mint/mod.rs b/crates/cdk-common/src/database/mint/mod.rs index 501ed449..bf97eacb 100644 --- a/crates/cdk-common/src/database/mint/mod.rs +++ b/crates/cdk-common/src/database/mint/mod.rs @@ -108,7 +108,7 @@ pub trait KeysDatabase { /// Mint Keys Database Error type Err: Into + From; - /// Beings a transaction + /// Begins a transaction async fn begin_transaction<'a>( &'a self, ) -> Result + Send + Sync + 'a>, Error>; @@ -479,7 +479,7 @@ pub trait KVStoreDatabase { /// Key-Value Store Database trait #[async_trait] pub trait KVStore: KVStoreDatabase { - /// Beings a KV transaction + /// Begins a KV transaction async fn begin_transaction<'a>( &'a self, ) -> Result + Send + Sync + 'a>, Error>; @@ -497,7 +497,7 @@ pub trait Database: + SignaturesDatabase + SagaDatabase { - /// Beings a transaction + /// Begins a transaction async fn begin_transaction<'a>( &'a self, ) -> Result + Send + Sync + 'a>, Error>;