~emersion/gyosu

4c3147987ff87c55016f2e41f0959e2b73f7248a — Simon Ser 4 months ago 9fd6635
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{