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>;