We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ed1deee commit 47b315fCopy full SHA for 47b315f
src/query/query_parser/query_parser.rs
@@ -167,7 +167,7 @@ fn trim_ast(logical_ast: LogicalAst) -> Option<LogicalAst> {
167
/// * phrase terms: Quoted terms become phrase searches on fields that have positions indexed. e.g.,
168
/// `title:"Barack Obama"` will only find documents that have "barack" immediately followed by
169
/// "obama". Single quotes can also be used. If the text to be searched contains quotation mark,
170
-/// it is possible to escape them with a \.
+/// it is possible to escape them with a `\`.
171
///
172
/// * range terms: Range searches can be done by specifying the start and end bound. These can be
173
/// inclusive or exclusive. e.g., `title:[a TO c}` will find all documents whose title contains a
0 commit comments