We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ea8f0e4 commit 5f5a50dCopy full SHA for 5f5a50d
dot-parse/README.md
@@ -363,7 +363,7 @@ static SearchCriteria parse(String input) {
363
Parser<Term> unquoted = Parser.word()
364
.suchThat(w -> !keywords.contains(w), "search term")
365
.map(Term::new);
366
- Parser<Term> quoted = Parser.quotedStringWithEscapes('"', chars(1));
+ Parser<Term> quoted = Parser.quotedStringWithEscapes('"', chars(1)).map(Term::new);
367
368
// Leaf-level search term can be a quoted, unquoted term, or a sub-criteria inside parentheses.
369
// They are then grouped by the boolean operators.
0 commit comments