From 53090ea50dbfb7b1d34af5d88e78a3531960ce4b Mon Sep 17 00:00:00 2001 From: pezcore Date: Fri, 24 Mar 2023 13:26:27 -0400 Subject: [PATCH] doc: fix reference to Vec --- src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib.rs b/src/lib.rs index 5c06d73..0e0d048 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -532,7 +532,7 @@ impl Mnemonic { /// Convert the mnemonic back to the entropy used to generate it. /// The return value is a byte array and the size. - /// Use [Mnemonic::to_entropy] (needs `std`) to get a [Vec]. + /// Use [Mnemonic::to_entropy] (needs `std`) to get a [`Vec`]. pub fn to_entropy_array(&self) -> ([u8; 33], usize) { // We unwrap errors here because this method can only be called on // values that were already previously validated.