From 42d10217585f68022ec112f487ff6474d4ef6f03 Mon Sep 17 00:00:00 2001 From: Haitam <35850056+hsusanoo@users.noreply.github.com> Date: Mon, 10 Nov 2025 15:05:26 +0100 Subject: [PATCH] doc(cmd): Fix typo in --clean flag description --- cmd/generate.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/generate.go b/cmd/generate.go index 7a0a09f..d6e5be6 100644 --- a/cmd/generate.go +++ b/cmd/generate.go @@ -124,7 +124,7 @@ var ( func init() { generateCmd.Flags().StringVar(&printerType, "printer", "dot", fmt.Sprintf("Type of printer to use for the output. Supported ones are: %s", strings.Join(printer.TypeStrings(), ","))) generateCmd.Flags().BoolVar(&raw, "raw", false, "Raw will not use any specific logic from the provider, will just display the connections between elements. It's used by default if none of the Providers is known") - generateCmd.Flags().BoolVar(&clean, "clean", true, "Clean will the generated graph will not have any Node that does not have a connection/edge") + generateCmd.Flags().BoolVar(&clean, "clean", true, "The generated graph will not have any Node that does not have a connection/edge") generateCmd.Flags().BoolVar(&connections, "connections", true, "Connections will apply the logic of the provider to remove resources that are not nodes") generateCmd.Flags().BoolVar(&showIcons, "show-icons", true, "Toggle the icons on the printed graph") generateCmd.Flags().BoolVar(&externalNodes, "external-nodes", true, "Toggle the addition of external nodes like 'im_out' (used to show ingress connections)")