summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorKirill Zaborsky <qrilka@gmail.com>2019-06-27 03:57:37 +0300
committerPaul Masurel <paul.masurel@gmail.com>2019-06-27 09:57:37 +0900
commitf52b1e68d19056e3941dd5e1d9139784593d20c2 (patch)
tree790a5d68023affb6d6a4e554952ec22a81ef8137 /src
parent3e0907fe0544b3a4809adffa567d8a5019ba9d34 (diff)
Fix typo (#573)
Diffstat (limited to 'src')
-rw-r--r--src/query/query_parser/query_parser.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/query/query_parser/query_parser.rs b/src/query/query_parser/query_parser.rs
index b6ac926..7f8b737 100644
--- a/src/query/query_parser/query_parser.rs
+++ b/src/query/query_parser/query_parser.rs
@@ -115,7 +115,7 @@ fn trim_ast(logical_ast: LogicalAST) -> Option<LogicalAST> {
/// as `(a AND b) OR c`.
///
/// * In addition to the boolean operators, the `-`, `+` can help define. These operators
-/// are sufficient to axpress all queries using boolean operators. For instance `x AND y OR z` can
+/// are sufficient to express all queries using boolean operators. For instance `x AND y OR z` can
/// be written (`(+x +y) z`). In addition, these operators can help define "required optional"
/// queries. `(+x y)` matches the same document set as simply `x`, but `y` will help refining the score.
///