What changed, and why it matters
This commit only rewords two sentences in a documentation file about SeedQR. There are no code changes, no configuration changes, and no security-relevant alterations.
No action needed; this is a documentation-only wording change with no security relevance.
Security signals we found
No strong security signals were identified.
Evidence from the diff
The diff modifies docs/seed_qr/README.md with two minor wording edits: clarifying that wordlists start counting from 1, and changing ‘write them one after the next’ to ‘write them in order, one after the next.’ No executable code, cryptographic logic, build scripts, or dependencies were changed.
Changed components
docs/seed_qr/README.mdInspect captured patch +2 / −2
diff --git a/docs/seed_qr/README.md b/docs/seed_qr/README.md
index 8f8b9a5..ef34a88 100644
--- a/docs/seed_qr/README.md
+++ b/docs/seed_qr/README.md
@@ -28,7 +28,7 @@ Each word comes from a [list of 2048 words](https://github.com/bitcoin/bips/blob
For example, "tomato" is the 1,825th word in the list.
-But code always starts counting list items from zero. So the index of "tomato" is actually `1824`. The GitHub wordlist and most other resources number the words in a human-friendly manner that starts with `1`. But for SeedQR you'll have to remember to subtract one from any list that starts with `1` to get the correct index number.
+But code always starts counting list items from zero. So the index of "tomato" is actually `1824`. The GitHub wordlist and most other resources number the words in a human-friendly manner that starts counting from `1`. But for SeedQR you'll have to remember to subtract one from any such list in order to get the correct index number that SeedQR is expecting.
So we can convert a 12-word seed into a series of indices:
@@ -48,7 +48,7 @@ So we can convert a 12-word seed into a series of indices:
```
# "Standard" `SeedQR` Specification
-We take the indices of the mnemonic seed phrase and write them one after the next as one long stream of digits. Each index must be exactly four digits, so shorter numbers must be zero-padded (`12` becomes `0012`).
+We take the indices of the mnemonic seed phrase and write them in order, one after the next as one long stream of digits. Each index must be exactly four digits, so shorter numbers must be zero-padded (`12` becomes `0012`).
Using the example above:
Why this scored 15/100
Community notes
Notes can correct, qualify, or add evidence to the AI analysis. Every note shown here has been validated by a human moderator.
The AI analysis stands alone for now. Submit a note if you can add evidence or important context.