Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions developer/language/reference/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -79,13 +79,13 @@ any(diacritickey) + any(vowel) > index(vowel,2) index(diacriticCombining,1)
```

The following example shows how the index statement can be used in the left hand
side of a rule. If a repeating vowel is found, then this rule puts a circumflex
side of a rule. If a repeating vowel is found, then this rule adds a circumflex
on top of both vowels when <key>^</key> is pressed.

```
store(vowel) "aeiou"
store(vowelcirc) "âêîôû"
any(vowel) index(vowel,1) + "^" > index(vowelcirc,1)
any(vowel) index(vowel,1) + "^" > index(vowelcirc,1) index(vowelcirc,1)
```

## Platforms
Expand Down
Loading