add wildcard mention

This commit is contained in:
PSeitz
2021-08-21 18:10:33 +01:00
committed by GitHub
parent 1a45b030dc
commit 13401f46ea

View File

@@ -8,7 +8,10 @@ use tantivy_fst::Regex;
/// A Regex Query matches all of the documents
/// containing a specific term that matches
/// a regex pattern.
/// a regex pattern.
///
/// Wildcard queries (e.g. ho*se) can be achieved
/// by converting them to their regex counterparts.
///
/// ```rust
/// use tantivy::collector::Count;