Browse Source

Correct documentation about word boundaries.

scossu 1 week ago
parent
commit
47de0f7c6a
1 changed files with 2 additions and 2 deletions
  1. 2 2
      doc/config.md

+ 2 - 2
doc/config.md

@@ -217,8 +217,8 @@ To create specific rules for initial, final, and standalone tokens, the `%`
 character is used to mark the word boundary. Hence:
 
 ```
-  "token%": "transliteration of token at beginning of word"
-  "%token": "transliteration of token at end of word"
+  "%token": "transliteration of token at beginning of word"
+  "token%": "transliteration of token at end of word"
   "%token%": "transliteration of standalone token"
   "token": "transliteration of token anywhere else not specified"
 ```