cli: fix/improve some user-facing strings

This commit is contained in:
Thomas Tendyck 2023-07-05 16:44:57 +02:00 committed by Adrian Stobbe
parent 8a92d69762
commit b8a18914b8
8 changed files with 105 additions and 106 deletions

View file

@ -40,8 +40,8 @@ func NewVerifyCmd() *cobra.Command {
cmd := &cobra.Command{
Use: "verify",
Short: "Verify the confidential properties of a Constellation cluster",
Long: `Verify the confidential properties of a Constellation cluster.\n` +
`If arguments aren't specified, values are read from ` + "`" + constants.ClusterIDsFileName + "`.",
Long: "Verify the confidential properties of a Constellation cluster.\n" +
"If arguments aren't specified, values are read from `" + constants.ClusterIDsFileName + "`.",
Args: cobra.ExactArgs(0),
RunE: runVerify,
}