From f8d3136eae1f0959ebbac5d0c6420526d3b2019d Mon Sep 17 00:00:00 2001 From: Matthias Schmitz Date: Mon, 21 Mar 2016 15:28:24 +0100 Subject: [PATCH] Fix text alignment in dm help output. * The explanation of 'manifest' was one tab to far intended. --- cmd/dm/dm.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/dm/dm.go b/cmd/dm/dm.go index 0d586e876..2a28b8031 100644 --- a/cmd/dm/dm.go +++ b/cmd/dm/dm.go @@ -60,7 +60,7 @@ var commands = []string{ "deploy \t\t\t Deploys the named template or the supplied configuration(s)", "list \t\t\t Lists the deployments in the cluster", "get \t\t\t Retrieves the supplied deployment", - "manifest \t\t\t Lists manifests for deployment or retrieves the supplied manifest in the form (deployment[/manifest])", + "manifest \t\t Lists manifests for deployment or retrieves the supplied manifest in the form (deployment[/manifest])", "delete \t\t\t Deletes the supplied deployment", "update \t\t\t Updates a deployment using the supplied configuration(s)", "deployed-types \t\t Lists the types deployed in the cluster",