Ensure indentation is consistent in example code

plus remove usage of ancient builtin `println` 🙀
This commit is contained in:
Dan Buch 2017-08-14 09:33:47 -04:00
parent 3164173947
commit 2da290b872
Signed by: meatballhat
GPG Key ID: 9685130D8B763EA7

2
cli.go
View File

@ -11,7 +11,7 @@
// Name: "greet", // Name: "greet",
// Usage: "say a greeting", // Usage: "say a greeting",
// Action: func(c *cli.Context) error { // Action: func(c *cli.Context) error {
// println("Greetings") // fmt.Println("Greetings")
// return nil // return nil
// }, // },
// } // }