From 39cd5736e6c8f7ca58dc58470075db26fd7335aa Mon Sep 17 00:00:00 2001 From: Robby Colvin Date: Mon, 17 Jun 2013 16:36:22 -0700 Subject: [PATCH] fmt --- config.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config.go b/config.go index 3efbd9edd..528f0b07a 100644 --- a/config.go +++ b/config.go @@ -55,7 +55,7 @@ func decodeConfig(r io.Reader, c *config) error { // Returns an array of defined command names. func (c *config) CommandNames() (result []string) { result = make([]string, 0, len(c.Commands)) - for name, _ := range c.Commands { + for name := range c.Commands { result = append(result, name) } return