From f4ca81639dac4c385166159b8789072b2010fac1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Garci=CC=81a?= Date: Tue, 8 Oct 2024 12:47:45 +0200 Subject: [PATCH] Fmt --- crates/bitwarden-crypto/src/service/context.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/bitwarden-crypto/src/service/context.rs b/crates/bitwarden-crypto/src/service/context.rs index 9b75135a..3e966ccb 100644 --- a/crates/bitwarden-crypto/src/service/context.rs +++ b/crates/bitwarden-crypto/src/service/context.rs @@ -11,7 +11,7 @@ use crate::{ }; // This is to abstract over the read-only and read-write access to the global keys -// inside the CryptoServiceContext. The read-write access should only be used internally +// inside the CryptoServiceContext. The read-write access should only be used internally // in this crate to avoid users leaving the crypto store in an inconsistent state, // but for the moment we have some operations that require access to it. pub trait GlobalAccessMode<'a, SymmKeyRef: SymmetricKeyRef, AsymmKeyRef: AsymmetricKeyRef> {