소스 검색

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"
 ```