update misspell and gofmt

This commit is contained in:
Ming Deng
2020-12-14 13:52:26 +08:00
parent d4da82ef77
commit 385e1d390f
11 changed files with 31 additions and 21 deletions

View File

@@ -230,12 +230,12 @@ type bintree struct {
}
var _bintree = &bintree{nil, map[string]*bintree{
"views": &bintree{nil, map[string]*bintree{
"blocks": &bintree{nil, map[string]*bintree{
"block.tpl": &bintree{viewsBlocksBlockTpl, map[string]*bintree{}},
"views": {nil, map[string]*bintree{
"blocks": {nil, map[string]*bintree{
"block.tpl": {viewsBlocksBlockTpl, map[string]*bintree{}},
}},
"header.tpl": &bintree{viewsHeaderTpl, map[string]*bintree{}},
"index.tpl": &bintree{viewsIndexTpl, map[string]*bintree{}},
"header.tpl": {viewsHeaderTpl, map[string]*bintree{}},
"index.tpl": {viewsIndexTpl, map[string]*bintree{}},
}},
}}