From 72f0c0361ffbb7904abbe5a8b6bd46ff600cf753 Mon Sep 17 00:00:00 2001 From: Christoph Hartmann Date: Mon, 21 Nov 2022 07:51:43 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=A7=B9=20simplify=20docs=20(#200)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- apps/cnspec/cmd/run.go | 4 ++-- apps/cnspec/cmd/shell.go | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/apps/cnspec/cmd/run.go b/apps/cnspec/cmd/run.go index 378cac2c..3c84ddbd 100644 --- a/apps/cnspec/cmd/run.go +++ b/apps/cnspec/cmd/run.go @@ -17,8 +17,8 @@ func init() { var execCmd = builder.NewProviderCommand(builder.CommandOpts{ Use: "run", - Short: "Run a Mondoo Query Language (MQL) query", - Long: `Run a Mondoo Query Language (MQL) query on the CLI and displays its results.`, + Short: "Run a MQL query", + Long: `Run a MQL query on the CLI and displays its results.`, CommonFlags: func(cmd *cobra.Command) { cmd.Flags().Bool("parse", false, "Parse the query and return the logical structure") cmd.Flags().Bool("ast", false, "Parse the query and return the Abstract Syntax Tree (AST)") diff --git a/apps/cnspec/cmd/shell.go b/apps/cnspec/cmd/shell.go index 7060a5c9..0ba86fd5 100644 --- a/apps/cnspec/cmd/shell.go +++ b/apps/cnspec/cmd/shell.go @@ -18,8 +18,8 @@ func init() { var shellCmd = builder.NewProviderCommand(builder.CommandOpts{ Use: "shell", - Short: "Interactive shell for Mondoo Query Language (MQL)", - Long: `Allows for the interactive exploration of Mondoo Query Language (MQL) queries`, + Short: "Interactive shell for MQL", + Long: `Allows for the interactive exploration of MQL queries`, CommonFlags: func(cmd *cobra.Command) { cmd.Flags().StringP("password", "p", "", "connection password e.g. for ssh/winrm") cmd.Flags().Bool("ask-pass", false, "ask for connection password")