Browse Source

fix linting errors for Section.Keys method

pull/16/head
Brett Langdon 11 years ago
parent
commit
f7016fb7f1
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      section.go

+ 2
- 2
section.go View File

@ -192,8 +192,8 @@ func (section *Section) HasParent() bool {
// Keys will return back a list of all setting names in this Section
func (section *Section) Keys() []string {
keys := make([]string, 0)
for key, _ := range section.values {
var keys []string
for key := range section.values {
keys = append(keys, key)
}


Loading…
Cancel
Save