Ignore case when sorting file decls We were already doing that when sorting the global list of decls.
1 files changed, 1 insertions(+), 1 deletions(-) M main.go
M main.go => main.go +1 -1
@@ 619,7 619,7 @@ func main() { } sort.Slice(data.Decls, func(i, j int) bool { - return data.Decls[i].Name < data.Decls[j].Name + return strings.ToLower(data.Decls[i].Name) < strings.ToLower(data.Decls[j].Name) }) tpl.Funcs(template.FuncMap{