diff --git a/src/search/cardsearch.rs b/src/search/cardsearch.rs index 46ff22a..95127f4 100644 --- a/src/search/cardsearch.rs +++ b/src/search/cardsearch.rs @@ -1,4 +1,4 @@ -//! This module defines a [tantivy] search engine to find [Card]s. +//! Module defining a search engine to find [Card]s. use tantivy::{Document, Index, IndexReader, IndexWriter}; use tantivy::collector::TopDocs; diff --git a/src/search/mod.rs b/src/search/mod.rs index 74f5bc0..4480e41 100644 --- a/src/search/mod.rs +++ b/src/search/mod.rs @@ -1,3 +1,3 @@ -//! This module implements full-text search on Legends of Runeterra data. +//! Module implementing full-text search on Legends of Runeterra data, using [tantivy]. pub mod cardsearch;