From f0aa1cf20d7e552ba2f39452d49813f68be9a2bb Mon Sep 17 00:00:00 2001 From: Victor Vieux Date: Tue, 20 Aug 2013 11:52:37 +0000 Subject: [PATCH] fix typo Upstream-commit: 41973d41e950249cd630f193a4d9250e3b3740e5 Component: engine --- components/engine/commands.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/engine/commands.go b/components/engine/commands.go index 9d0b0968d1..8f31b24f7e 100644 --- a/components/engine/commands.go +++ b/components/engine/commands.go @@ -453,7 +453,7 @@ func (cli *DockerCli) CmdVersion(args ...string) error { } fmt.Fprintf(cli.out, "Server version: %s\n", out.Version) if out.GitCommit != "" { - fmt.Fprintf(cli.out, "Git commit (version): %s\n", out.GitCommit) + fmt.Fprintf(cli.out, "Git commit (server): %s\n", out.GitCommit) } if out.GoVersion != "" { fmt.Fprintf(cli.out, "Go version (server): %s\n", out.GoVersion)