diff --git a/book/src/common_patterns/selection.md b/book/src/common_patterns/selection.md index 9b0d5c6c..a7de5e84 100644 --- a/book/src/common_patterns/selection.md +++ b/book/src/common_patterns/selection.md @@ -10,8 +10,8 @@ when Qbase changes. ## Example: the base query -For example, imagine that you have a query `parse` that parses the input text of a request to return a -only consume small parts of itheader and a body: +For example, imagine that you have a query `parse` that parses the input text of a request +and returns a `ParsedResult`, which contains a header and a body: ```rust,ignore {{#include ../../../examples/selection/main.rs:request}}