Skip to content

Commit

Permalink
fix(logic): small tweak to logic. Forgot a NOT
Browse files Browse the repository at this point in the history
  • Loading branch information
Anthony Nixon committed Dec 2, 2022
1 parent 858403d commit d58acf5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion aoc-boilerplate/templating/templating.go
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ func LanguageValid(language string) (valid bool) {
if _, ok := templates[language]; !ok {
valid = false
}
if _, ok := fileExtensions[language]; ok {
if _, ok := fileExtensions[language]; !ok {
valid = false
}

Expand Down

0 comments on commit d58acf5

Please sign in to comment.