浏览代码

Fix word boundary example in config documentation.

scossu 3 月之前
父节点
当前提交
39d076898e
共有 1 个文件被更改,包括 2 次插入2 次删除
  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"
 ```