From 6d3a13fcfbe697547f0b87fec40d255aa88f8fcb Mon Sep 17 00:00:00 2001 From: Nick Thomas Date: Sun, 30 Dec 2018 23:22:20 +0000 Subject: [PATCH] Fix a typo in copy-pasted code --- internal/sets/sets.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/sets/sets.go b/internal/sets/sets.go index 68f0d62..b06da57 100644 --- a/internal/sets/sets.go +++ b/internal/sets/sets.go @@ -44,7 +44,7 @@ func LoadSets(dir string) (map[string]*MapSet, error) { basename := filepath.Base(filename) extname := filepath.Ext(filename) - // Don't try to load non-.obj files + // Don't try to load non-.set files if !strings.EqualFold(extname, ".set") { continue }