From 5b67f20a917e4fbe42b7c19d1c689a2c5f380eb8 Mon Sep 17 00:00:00 2001 From: yupengzte Date: Thu, 23 Feb 2017 16:46:08 +0800 Subject: [PATCH] Delete dots to align with other commands description Signed-off-by: yupengzte --- command/node/inspect.go | 2 +- command/service/inspect.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/command/node/inspect.go b/command/node/inspect.go index 97a2717781..a08497003d 100644 --- a/command/node/inspect.go +++ b/command/node/inspect.go @@ -37,7 +37,7 @@ func newInspectCommand(dockerCli command.Cli) *cobra.Command { flags := cmd.Flags() flags.StringVarP(&opts.format, "format", "f", "", "Format the output using the given Go template") - flags.BoolVar(&opts.pretty, "pretty", false, "Print the information in a human friendly format.") + flags.BoolVar(&opts.pretty, "pretty", false, "Print the information in a human friendly format") return cmd } diff --git a/command/service/inspect.go b/command/service/inspect.go index deb701bf6d..7af9b98c3c 100644 --- a/command/service/inspect.go +++ b/command/service/inspect.go @@ -38,7 +38,7 @@ func newInspectCommand(dockerCli *command.DockerCli) *cobra.Command { flags := cmd.Flags() flags.StringVarP(&opts.format, "format", "f", "", "Format the output using the given Go template") - flags.BoolVar(&opts.pretty, "pretty", false, "Print the information in a human friendly format.") + flags.BoolVar(&opts.pretty, "pretty", false, "Print the information in a human friendly format") return cmd }