Update README.md

This commit is contained in:
Jeremy Saenz 2013-07-18 11:50:15 -07:00
parent ad47ead260
commit 22e11159f5

View File

@ -36,7 +36,7 @@ import "github.com/codegangsta/cli"
func main() {
cli.Name = "greet"
cli.Usage = "fight the loneliness!"
cli.Action = func(c cli.Context) {
cli.Action = func(c *cli.Context) {
println("Hello friend!")
}