Skip to content

Commit 8fc0e0d

Browse files
authored
Merge pull request bitcoin#521 from jonathancross/bip-39-wordlist
bip-0039-wordlists : Typos, capitalization and trailing whitespace.
2 parents 9cafe77 + 3432f44 commit 8fc0e0d

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

bip-0039/bip-0039-wordlists.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -12,15 +12,15 @@
1212

1313
### Japanese
1414

15-
1. **Developers implementing phrase generation or checksum verification must separate words using ideographic spaces / accommodate users inputting ideographic spaces.**
16-
(UTF-8 bytes: **0xE38080**; C/C+/Java: **"\u3000"**; Python: **u"\u3000"**)
15+
1. **Developers implementing phrase generation or checksum verification must separate words using ideographic spaces / accommodate users inputting ideographic spaces.**
16+
(UTF-8 bytes: **0xE38080**; C/C+/Java: **"\u3000"**; Python: **u"\u3000"**)
1717
However, code that only accepts Japanese phrases but does not generate or verify them should be fine as is.
1818
This is because when generating the seed, normalization as per the spec will
1919
automatically change the ideographic spaces into normal ASCII spaces, so as long as your code never shows the user an ASCII space
2020
separated phrase or tries to split the phrase input by the user, dealing with ASCII or Ideographic space is the same.
2121

22-
2. Word-wrapping doesn't work well, so making sure that words only word-wrap at one of the
23-
ideographic spaces may be a necessary step. As a long word split in two could be mistaken easily
22+
2. Word-wrapping doesn't work well, so making sure that words only word-wrap at one of the
23+
ideographic spaces may be a necessary step. As a long word split in two could be mistaken easily
2424
for two smaller words (This would be a problem with any of the 3 character sets in Japanese)
2525

2626
### Spanish
@@ -41,9 +41,9 @@ uniformity, we propose to use normal ASCII spaces (0x20) to separate words as pe
4141
Credits: @Kirvx @NicolasDorier @ecdsa @EricLarch
4242
([The pull request](https://github.com/bitcoin/bips/issues/152))
4343

44-
1. High priority on simple and common french words.
44+
1. High priority on simple and common French words.
4545
2. Only words with 5-8 letters.
46-
3. A word is fully recognizable by typing the first 4 letters (special french characters "é-è" are considered equal to "e", for exemple "museau" and "musée" can not be together).
46+
3. A word is fully recognizable by typing the first 4 letters (special French characters "é-è" are considered equal to "e", for example "museau" and "musée" can not be together).
4747
4. Only infinitive verbs, adjectives and nouns.
4848
5. No pronouns, no adverbs, no prepositions, no conjunctions, no interjections (unless a noun/adjective is also popular than its interjection like "mince;chouette").
4949
6. No numeral adjectives.
@@ -65,7 +65,7 @@ Credits: @paoloaga @Polve
6565

6666
Words chosen using the following rules:
6767

68-
1. Simple and common italian words.
68+
1. Simple and common Italian words.
6969
2. Length between 4 and 8 characters.
7070
3. First 4 letters must be unique between all words.
7171
4. No accents or special characters.
@@ -76,8 +76,8 @@ Words chosen using the following rules:
7676
9. No words with double vocals (like: lineetta).
7777
10. No words already used in other language mnemonic sets.
7878
11. If 3 of the first 4 letters are already used in the same sequence in another mnemonic word, there must be at least other 3 different letters.
79-
12. If 3 of the first 4 letters are already used in the same sequence in another mnemonic word, there not must be the same sequence of 3 or more letters.
79+
12. If 3 of the first 4 letters are already used in the same sequence in another mnemonic word, there must not be the same sequence of 3 or more letters.
8080

81-
Rules 11 and 12 prevent the selection words that are not different enough. This makes each word more recognizable among others and less error prone. For example: the wordlist contains "atono", then "atomo" is rejected, but "atomico" is good.
81+
Rules 11 and 12 prevent the selection words that are not different enough. This makes each word more recognizable among others and less error prone. For example: the wordlist contains "atono", then "atomo" is rejected, but "atomico" is good.
8282

8383
All the words have been manually selected and automatically checked against the rules.

0 commit comments

Comments
 (0)