mirror of
https://github.com/meilisearch/meilisearch.git
synced 2024-11-23 02:27:40 +08:00
Refine the help message of the binaries
This commit is contained in:
parent
f757df5dfd
commit
92c2b1dd2d
@ -36,7 +36,7 @@ pub fn simple_alphanumeric_tokens(string: &str) -> impl Iterator<Item = &str> {
|
||||
}
|
||||
|
||||
#[derive(Debug, StructOpt)]
|
||||
#[structopt(name = "mm-indexer", about = "The indexer side of the MMI project.")]
|
||||
#[structopt(name = "milli-indexer", about = "The indexer binary of the milli project.")]
|
||||
struct Opt {
|
||||
/// The database path where the database is located.
|
||||
/// It is created if it doesn't already exist.
|
||||
|
@ -13,7 +13,7 @@ use structopt::StructOpt;
|
||||
static ALLOC: jemallocator::Jemalloc = jemallocator::Jemalloc;
|
||||
|
||||
#[derive(Debug, StructOpt)]
|
||||
#[structopt(name = "mm-search", about = "The server side of the MMI project.")]
|
||||
#[structopt(name = "milli-search", about = "A simple search binary for milli project.")]
|
||||
struct Opt {
|
||||
/// The database path where the database is located.
|
||||
/// It is created if it doesn't already exist.
|
||||
|
@ -17,7 +17,7 @@ use milli::{BEU32, Index};
|
||||
static ALLOC: jemallocator::Jemalloc = jemallocator::Jemalloc;
|
||||
|
||||
#[derive(Debug, StructOpt)]
|
||||
#[structopt(name = "mmi", about = "The server side of the mmi project.")]
|
||||
#[structopt(name = "milli", about = "The server binary of the milli project.")]
|
||||
struct Opt {
|
||||
/// The database path where the LMDB database is located.
|
||||
/// It is created if it doesn't already exist.
|
||||
|
Loading…
Reference in New Issue
Block a user