From 1ccba5fbb59ba1b0422e3c3b3cb112c392ea483f Mon Sep 17 00:00:00 2001 From: Mr Rogers Date: Wed, 19 Feb 2014 16:37:20 -0500 Subject: [PATCH] fix whitespace --- app_test.go | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/app_test.go b/app_test.go index 99eb620..b5c20f5 100644 --- a/app_test.go +++ b/app_test.go @@ -34,28 +34,28 @@ func ExampleAppHelp() { cli.StringFlag{Name: "name", Value: "bob", Usage: "a name to say"}, } app.Commands = []cli.Command{ - { + { Name: "describeit", ShortName: "d", Usage: "use it to see a description", Description: "This is how we describe describeit the function", Action: func(c *cli.Context) { - fmt.Printf("i like to describe things") - }, + fmt.Printf("i like to describe things") + }, }, } app.Run(os.Args) // Output: - // NAME: - // describeit - use it to see a description + // NAME: + // describeit - use it to see a description // - // USAGE: - // command describeit [command options] [arguments...] + // USAGE: + // command describeit [command options] [arguments...] // - // DESCRIPTION: - // This is how we describe describeit the function - // - // OPTIONS: + // DESCRIPTION: + // This is how we describe describeit the function + // + // OPTIONS: } func TestApp_Run(t *testing.T) {