From 5726dd988672f30568a32084235430aac663fa4f Mon Sep 17 00:00:00 2001 From: Joe Prosser Date: Mon, 9 Oct 2023 23:05:42 +0100 Subject: [PATCH] commands: add get dataset stats --- cli/src/commands/get/datasets.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cli/src/commands/get/datasets.rs b/cli/src/commands/get/datasets.rs index 7c649d86..d8c5b7eb 100644 --- a/cli/src/commands/get/datasets.rs +++ b/cli/src/commands/get/datasets.rs @@ -16,7 +16,7 @@ pub struct GetDatasetsArgs { dataset: Option, #[structopt(long = "stats")] - /// Whether to include source statistics in response + /// Whether to include dataset statistics in response include_stats: bool, }