summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
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.
///