Fix console godoc

This commit is contained in:
Brandon Croft 2023-06-30 14:44:43 -06:00
parent dceb8453af
commit fec1ca69ac
No known key found for this signature in database
GPG Key ID: B01E32423322EB9D
2 changed files with 5 additions and 6 deletions

View File

@ -423,11 +423,10 @@ func initCommands(
}
HiddenCommands = map[string]struct{}{
"env": struct{}{},
"internal-plugin": struct{}{},
"push": struct{}{},
"env": {},
"internal-plugin": {},
"push": {},
}
}
// makeShutdownCh creates an interrupt listener and returns a channel.

View File

@ -19,8 +19,8 @@ import (
"github.com/mitchellh/cli"
)
// ConsoleCommand is a Command implementation that applies a Terraform
// configuration and actually builds or changes infrastructure.
// ConsoleCommand is a Command implementation that starts an interactive
// console that can be used to try expressions with the current config.
type ConsoleCommand struct {
Meta
}