From c2840b4734e385d9f7a0231a79557843d682e922 Mon Sep 17 00:00:00 2001 From: multipleof4 Date: Mon, 14 Sep 2026 08:44:19 -0700 Subject: [PATCH] Fix verb forms in decoding process description Corrects verb forms for consistency in decoding explanation. --- readme.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/readme.md b/readme.md index 8864ac9..9927fa2 100644 --- a/readme.md +++ b/readme.md @@ -26,7 +26,7 @@ When enabled, prepends an invisible zero-width signature to the output. This all 3. Maps each resulting digit to its assigned zero-width character from the alphabet. 4. Joins digits together; separates characters with the base's designated separator (also zero-width). -The result is a string of invisible Unicode that carries the full original text. Decoding reverses the mapping: split on the separator, look up each zero-width character to recover the digit, parse the base-N number back to a code point, and reconstruct the string. +The result is a string of invisible Unicode that carries the full original text. Decoding reverses the mapping: splits on the separator, looks up each zero-width character to recover the digit, parses the base-N number back to a code point, and reconstructs the string. For details regarding picking the optimal standard/base, see [docs/zwus.md](docs/zwus.md).