From f332c8250ec73b057ab8df405c0646f154c4a37e Mon Sep 17 00:00:00 2001 From: Ian Culp <57159226+icculp@users.noreply.github.com> Date: Mon, 2 Aug 2021 22:47:48 -0500 Subject: [PATCH] fixing typo --- 17_2_Using_BIP39_in_Libwally.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/17_2_Using_BIP39_in_Libwally.md b/17_2_Using_BIP39_in_Libwally.md index 773ff69..d7b52a9 100644 --- a/17_2_Using_BIP39_in_Libwally.md +++ b/17_2_Using_BIP39_in_Libwally.md @@ -57,7 +57,7 @@ That's it! You've created a mnemonic phrase! ### Translate into a Seed -There are some functions, such as `bip32_key_from_seed` (which we'll meet in the next section) that require you to have theseeddeed rather than the Mnemonic. The two things are functionally identical: if you have the seed, you can generate the mnemonic, and vice-versa. +There are some functions, such as `bip32_key_from_seed` (which we'll meet in the next section) that require you to have the seed rather than the Mnemonic. The two things are functionally identical: if you have the seed, you can generate the mnemonic, and vice-versa. If you need to generate the seed from your mnemonic, you just use the `bip39_mnemonic_to_seed` command: ```