From 2eb3845df5675a71565d5a9e13b7bad0881fafcd Mon Sep 17 00:00:00 2001 From: Wagner Bruna Date: Wed, 3 Sep 2025 13:49:01 -0300 Subject: [PATCH] fix: typo in the verbose long flag (#783) --- examples/cli/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/cli/main.cpp b/examples/cli/main.cpp index 20057ac..31e8be2 100644 --- a/examples/cli/main.cpp +++ b/examples/cli/main.cpp @@ -443,7 +443,7 @@ void parse_args(int argc, const char** argv, SDParams& params) { {"", "--diffusion-conv-direct", "", true, ¶ms.diffusion_conv_direct}, {"", "--vae-conv-direct", "", true, ¶ms.vae_conv_direct}, {"", "--canny", "", true, ¶ms.canny_preprocess}, - {"-v", "--verbos", "", true, ¶ms.verbose}, + {"-v", "--verbose", "", true, ¶ms.verbose}, {"", "--color", "", true, ¶ms.color}, {"", "--chroma-disable-dit-mask", "", false, ¶ms.chroma_use_dit_mask}, {"", "--chroma-enable-t5-mask", "", true, ¶ms.chroma_use_t5_mask},