Skip to content

Commit

Permalink
Typos.
Browse files Browse the repository at this point in the history
  • Loading branch information
wolfmcnally committed Jun 21, 2020
1 parent 141c5b6 commit 3a32f92
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions papers/bcr-2020-012-bytewords.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ Schemes like [BIP39] and [SLIP39] (see Appendix) encode a binary string as a ser
* Additionally, words can be uniquely identified by their first three letters or last three letters.
* Representing each byte as a single word simplifies encoder and decoder architecture.
* Minimizing the number of letters for each word simplifies transfer to permanent media such as stamped metal.
* Using only ASCII characters (and one optional separator character, either space or hyphen) preserves compatibility with URI and QR code character sets.
* Using only ASCII letters (and one optional separator character, either space or hyphen) preserves compatibility with URI and QR code character sets.
* Provides a four-word sequence at the end as a checksum of the entire sequence.

### Word selection criteria
Expand All @@ -28,9 +28,9 @@ Schemes like [BIP39] and [SLIP39] (see Appendix) encode a binary string as a ser
* Prefer words in common usage.
* Avoid homophones and near homophones.
* Prefer two-syllable words.
* Each word's first three characters must be a unique sequence (XXX-).
* Each word's last three characters must be a unique sequence (-XXX).
* Each word's first and last characters must be a unique sequence (X--X).
* Each word's first three letters must be a unique sequence (XXX-).
* Each word's last three letters must be a unique sequence (-XXX).
* Each word's first and last letters must be a unique sequence (X--X).
* The Damerau-Levenshtein distance between any two words is at least 2.
* Prefer words with positive connotations.
* Prefer words which are "interesting" (strong emotional valence) even if connotation is neutral or slightly negative.
Expand Down

0 comments on commit 3a32f92

Please sign in to comment.