Fix the following things:

* Change `for name, _ := range _bindata` to `for name := range _bindata {`
* Format the souce codes
pull/4/head
yosssi 2014-05-12 18:15:42 +09:00
parent 57a8ec74ce
commit e764a84fdf
1 changed files with 2 additions and 2 deletions

4
toc.go
View File

@ -42,8 +42,8 @@ func Asset(name string) ([]byte, error) {
// AssetNames returns the names of the assets.
func AssetNames() []string {
names := make([]string, 0, len(_bindata))
for name, _ := range _bindata {
names= append(names, name)
for name := range _bindata {
names = append(names, name)
}
return names
}