From ac286e0d1bd4c8dbe6d21cbe8c0a131ad8ba1854 Mon Sep 17 00:00:00 2001 From: secp512k2 <187356958+secp512k2@users.noreply.github.com> Date: Tue, 5 Nov 2024 12:13:02 -0800 Subject: [PATCH] doc: Fix grammatical errors in multisig-tutorial.md This pull request fixes grammatical errors in the 'multisig-tutorial.md' document. Corrections: 1. Incorrect Phrase "As can been seen": - Before: There are discussions about eliminating this redundancy, as can been seen in the issue #17190 (https://github.com/bitcoin/bitcoin/issues/17190). - After: There are discussions about eliminating this redundancy, as can be seen in the issue #17190 (https://github.com/bitcoin/bitcoin/issues/17190). 2. Clarity Improvement in a Sentence: - Before: Note that at least two descriptors are usually used, one for internal derivation paths and external ones. - After: Note that at least two descriptors are usually used, one for internal derivation paths and one for external ones. Explanation: - Corrected "been" to "be" to fix the grammatical error. - Added "one for" before "external ones" to improve clarity and parallel structure in the sentence. These minor corrections enhance the readability and professionalism of the documentation. Thank you for considering this pull request. --- doc/multisig-tutorial.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/multisig-tutorial.md b/doc/multisig-tutorial.md index 1f21acc2be9..28b5a70b2c1 100644 --- a/doc/multisig-tutorial.md +++ b/doc/multisig-tutorial.md @@ -82,7 +82,7 @@ multisig_desc="[$multisig_ext_desc, $multisig_int_desc]" `external_desc` and `internal_desc` specify the output type (`wsh`, in this case) and the xpubs involved. They also use BIP 67 (`sortedmulti`), so the wallet can be recreated without worrying about the order of xpubs. Conceptually, descriptors describe a list of scriptPubKey (along with information for spending from it) [[source](https://github.com/bitcoin/bitcoin/issues/21199#issuecomment-780772418)]. -Note that at least two descriptors are usually used, one for internal derivation paths and external ones. There are discussions about eliminating this redundancy, as can been seen in the issue [#17190](https://github.com/bitcoin/bitcoin/issues/17190). +Note that at least two descriptors are usually used, one for internal derivation paths and one for external ones. There are discussions about eliminating this redundancy, as can be seen in the issue [#17190](https://github.com/bitcoin/bitcoin/issues/17190). After creating the descriptors, it is necessary to add the checksum, which is required by the `importdescriptors` RPC.