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
2 changes: 1 addition & 1 deletion docs/REFERENCE.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ Plotnik uses an NFA-based recursive cursor walk with backtracking. Understanding

- **Root-anchored:** Matching starts at the root of the target tree and must match the entire structure (like `^...$` in regex, not a substring search)
- **Backtracking:** When a branch fails, the engine backtracks and tries alternatives
- **Ordered choice:** In alternations `[A B C]`, branches are tried in order; first match wins (PEG semantics)
- **Ordered choice:** In alternations `[A B C]`, branches are tried in order; first match wins

### Trivia Handling

Expand Down