From a0bb29c05ea2caf4df772defdefc13ea73b004b6 Mon Sep 17 00:00:00 2001 From: Jean-Pierre De Jesus DIAZ Date: Mon, 13 Mar 2023 12:12:39 +0100 Subject: [PATCH] Fix typo in variable documentation Signed-off-by: Jean-Pierre De Jesus DIAZ --- src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib.rs b/src/lib.rs index 856ffe6..b5922f8 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -167,7 +167,7 @@ impl error::Error for Error {} pub struct Mnemonic { /// The language the mnemonic. lang: Language, - /// The indiced of the words. + /// The indices of the words. /// Mnemonics with less than the max nb of words are terminated with EOF. words: [u16; MAX_NB_WORDS], }