From 36499cd8c981dbfc2ae1be1d17f341f67213514b Mon Sep 17 00:00:00 2001 From: peterc-s Date: Tue, 28 Apr 2026 23:05:55 +0100 Subject: [PATCH] fix cli dataset types in help text --- crates/chaff-cli/src/main.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/crates/chaff-cli/src/main.rs b/crates/chaff-cli/src/main.rs index da95982..1548342 100644 --- a/crates/chaff-cli/src/main.rs +++ b/crates/chaff-cli/src/main.rs @@ -43,7 +43,7 @@ pub enum CliOptions { /// Get statistics about a dataset. #[bpaf(command("dataset-stats"))] DatasetStats { - /// The type of dataset (available: tiktok). + /// The type of dataset (available: chaff, tiktok). #[bpaf(positional("TYPE"))] dataset_type: String, @@ -87,7 +87,7 @@ pub enum CliOptions { #[bpaf(short, long)] output: Option, - /// The type of dataset (available: tiktok). + /// The type of dataset (available: chaff, tiktok). #[bpaf(positional("TYPE"))] dataset_type: String, @@ -119,7 +119,7 @@ pub enum Sim { #[bpaf(short, long)] output: Option, - /// The type of dataset (available: tiktok). + /// The type of dataset (available: chaff, tiktok). #[bpaf(positional("TYPE"))] dataset_type: String,