From 8f35c181b20e000d80320ad65283d53f6bf0a1d7 Mon Sep 17 00:00:00 2001 From: Qiang Huang Date: Mon, 7 Sep 2015 10:39:22 +0800 Subject: [PATCH] Minor comments fix Signed-off-by: Qiang Huang --- main.go | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/main.go b/main.go index b71de2dfb54..cca4b894db5 100644 --- a/main.go +++ b/main.go @@ -23,12 +23,12 @@ direct child of the process supervisor. After creating a spec for your root filesystem with runc, you can execute a container in your shell by running: - cd /mycontainer - runc start + # cd /mycontainer + # runc start or - cd /mycontainer - runc start [ spec-file ] + # cd /mycontainer + # runc start [ spec-file ] If not specified, the default value for the 'spec-file' is 'config.json'. ` ) @@ -87,7 +87,7 @@ func main() { } return nil } - // Default to 'start' is no command is specified + // Default to 'start' if no command is specified app.Action = startCommand.Action if err := app.Run(os.Args); err != nil { logrus.Fatal(err)