diff options
author | Cashew <52880648+cashewnuttynuts@users.noreply.github.com> | 2024-06-30 17:54:42 +0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-06-30 10:54:42 +0000 |
commit | 307085cfe023910048308192143c1a682d92123e (patch) | |
tree | db388a79cfd657b035369894cea23b8bd455cda9 /docs | |
parent | b98ae212f0190fa0d9ca86aee833b03aa262eb1b (diff) |
fix typo (#1151)
Diffstat (limited to 'docs')
-rw-r--r-- | docs/development/language-features.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/development/language-features.md b/docs/development/language-features.md index 799a6776..96ae5d49 100644 --- a/docs/development/language-features.md +++ b/docs/development/language-features.md @@ -200,7 +200,7 @@ transforms: { }, ``` -Now, only dictionary entries marked with the same "n" condition will be eligible for matching the `plural` rule. The verb "read" should be marked as "v" in the dictionary, and will no longer be matched by the `plural` rule. The entries in the dictionary need to be marked with the exact same conditions defined in the `conditions` object. The `isDictionaryForm` field can be set to `false`, to allow some conditions to be sued only in between rules, and not in the dictionary. In most cases however, it will be set to `true`. +Now, only dictionary entries marked with the same "n" condition will be eligible for matching the `plural` rule. The verb "read" should be marked as "v" in the dictionary, and will no longer be matched by the `plural` rule. The entries in the dictionary need to be marked with the exact same conditions defined in the `conditions` object. The `isDictionaryForm` field can be set to `false`, to allow some conditions to be used only in between rules, and not in the dictionary. In most cases however, it will be set to `true`. <img align="right" src="../../img/deinflection-example-chain.png"> |