1
Fork 0
mirror of https://github.com/Steffo99/patched-porobot.git synced 2024-12-22 17:44:22 +00:00

Update some docstrings

This commit is contained in:
Steffo 2022-08-07 16:04:42 +02:00
parent f09c366900
commit 838b88e741
Signed by: steffo
GPG key ID: 6965406171929D01
2 changed files with 2 additions and 2 deletions

View file

@ -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;

View file

@ -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;