From 0ebbc4cb5a226043793ea35ae2ddf60094341b40 Mon Sep 17 00:00:00 2001 From: Sean Stangl Date: Tue, 30 Jun 2020 19:26:36 -0600 Subject: [PATCH] Fix incorrect SimpleTokenizer link in documentation (#844) --- src/query/query_parser/query_parser.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/query/query_parser/query_parser.rs b/src/query/query_parser/query_parser.rs index aac3f007d..05600e879 100644 --- a/src/query/query_parser/query_parser.rs +++ b/src/query/query_parser/query_parser.rs @@ -113,7 +113,7 @@ fn trim_ast(logical_ast: LogicalAST) -> Option { /// The language covered by the current parser is extremely simple. /// /// * simple terms: "e.g.: `Barack Obama` are simply tokenized using -/// tantivy's [`SimpleTokenizer`](tantivy::tokenizer::SimpleTokenizer), hence +/// tantivy's [`SimpleTokenizer`](../tokenizer/struct.SimpleTokenizer.html), hence /// becoming `["barack", "obama"]`. The terms are then searched within /// the default terms of the query parser. ///