From 8b2219c1e11dfb098cf1b35b197f2ab644003c8c Mon Sep 17 00:00:00 2001 From: Niko Matsakis Date: Tue, 24 Sep 2019 06:28:00 -0400 Subject: [PATCH] fix weird sentence --- book/src/common_patterns/selection.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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}}