From f9ed5421b5b7effcc171201726fbda5abc0ee404 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Garci=CC=81a?= Date: Thu, 12 Dec 2024 14:12:19 +0100 Subject: [PATCH] Fix doclink --- crates/bitwarden-crypto/src/keys/key_ref.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/bitwarden-crypto/src/keys/key_ref.rs b/crates/bitwarden-crypto/src/keys/key_ref.rs index 5bba0aaa..ea818c0f 100644 --- a/crates/bitwarden-crypto/src/keys/key_ref.rs +++ b/crates/bitwarden-crypto/src/keys/key_ref.rs @@ -8,7 +8,7 @@ use crate::{AsymmetricCryptoKey, CryptoKey, SymmetricCryptoKey}; /// key store. It is used to avoid exposing the key material directly in the public API. /// /// This trait is user-implemented, and our recommended implementation is using enums with variants -/// for each expected key purpose. We provide a macro ([key_refs]) that simplifies the trait +/// for each expected key purpose. We provide a macro ([crate::key_refs]) that simplifies the trait /// implementation /// /// To implement it manually, note that you need a few types: