diff --git a/commands/databases.go b/commands/databases.go index abe605eb1..a2fa2c6e0 100644 --- a/commands/databases.go +++ b/commands/databases.go @@ -1847,7 +1847,7 @@ This command lists the following details for each partition of a given topic in ` CmdBuilder(cmd, RunDatabaseTopicList, "list ", "Retrieve a list of topics for a given kafka database", topicListDetails, Writer, displayerType(&displayers.DatabaseKafkaTopics{}), aliasOpt("ls")) - CmdBuilder(cmd, RunDatabaseTopicGet, "get ", "Retrieve the configuration for a given kafka topic", topicGetDetails, Writer, displayerType(&displayers.DatabaseKafkaTopic{}), aliasOpt("g")) + CmdBuilder(cmd, RunDatabaseTopicGet, "get ", "Retrieve the configuration for a given kafka topic", topicGetDetails, Writer, displayerType(&displayers.DatabaseKafkaTopic{}), aliasOpt("g")) CmdBuilder(cmd, RunDatabaseTopicListPartition, "partitions ", "Retrieve the partitions for a given kafka topic", topicGetPartitionDetails, Writer, aliasOpt("p")) cmdDatabaseTopicDelete := CmdBuilder(cmd, RunDatabaseTopicDelete, "delete ", "Deletes a kafka topic by topic name", "", Writer, aliasOpt("rm")) AddBoolFlag(cmdDatabaseTopicDelete, doctl.ArgForce, doctl.ArgShortForce, false, "Deletes the kafka topic without a confirmation prompt")