From c25b2ca23fb1b71115fd2af08868a68ba8f8a0c3 Mon Sep 17 00:00:00 2001 From: Toon Verwerft Date: Sat, 4 Nov 2023 11:15:16 +0100 Subject: [PATCH] Typo --- docs/reader.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/reader.md b/docs/reader.md index cbb3503..eb3f8b4 100644 --- a/docs/reader.md +++ b/docs/reader.md @@ -77,7 +77,7 @@ Before it jumps back into the next `food` element to see if you are interested i When the reader gets to the bottom of the XML, the reading is finished and all the matches you are interested in are yielded. -Matchers act similar to the {specification pattern](https://en.wikipedia.org/wiki/Specification_pattern). +Matchers act similar to the [specification pattern](https://en.wikipedia.org/wiki/Specification_pattern). The cool part about this, is that it allows you to combine multiple matchers exactly as you would do with booleans. For example: `sequence(element_name('breakfast_menu', element_name('food'))` will look for the NodeSequence that matches `breakfast_menu > food`.