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

4
cli.go
View File

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