fmt
This commit is contained in:
parent
75db279364
commit
148d95def5
|
@ -55,7 +55,7 @@ func decodeConfig(r io.Reader, c *config) error {
|
||||||
// Returns an array of defined command names.
|
// Returns an array of defined command names.
|
||||||
func (c *config) CommandNames() (result []string) {
|
func (c *config) CommandNames() (result []string) {
|
||||||
result = make([]string, 0, len(c.Commands))
|
result = make([]string, 0, len(c.Commands))
|
||||||
for name, _ := range c.Commands {
|
for name := range c.Commands {
|
||||||
result = append(result, name)
|
result = append(result, name)
|
||||||
}
|
}
|
||||||
return
|
return
|
||||||
|
|
Loading…
Reference in New Issue