Skip to content

Commit e6939e6

Browse files
committed
Fix build
1 parent f8cb804 commit e6939e6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

crates/bitwarden-crypto/src/store/context.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ use crate::{
1515
/// The context of a crypto operation using [super::KeyStore]
1616
///
1717
/// This will usually be accessed from an implementation of [crate::Decryptable] or
18-
/// [crate::Encryptable], but can also be obtained through [super::KeyStore::context]
18+
/// [crate::Encryptable], [crate::TypedEncryptable], but can also be obtained through [super::KeyStore::context]
1919
///
2020
/// This context contains access to the user keys stored in the [super::KeyStore] (sometimes
2121
/// referred to as `global keys`) and it also contains it's own individual secure backend for key
@@ -56,7 +56,7 @@ use crate::{
5656
/// impl CompositeEncryptable<Ids, SymmKeyId, EncString> for Data {
5757
/// fn encrypt_composite(&self, ctx: &mut KeyStoreContext<Ids>, key: SymmKeyId) -> Result<EncString, CryptoError> {
5858
/// let local_key_id = ctx.unwrap_symmetric_key(key, LOCAL_KEY, &self.key)?;
59-
/// self.name.encrypt(ctx, local_key_id, content_format)
59+
/// self.name.encrypt(ctx, local_key_id)
6060
/// }
6161
/// }
6262
/// ```

0 commit comments

Comments
 (0)