Skip to content

Commit

Permalink
[ignore] Rebase and correct template function mispell.
Browse files Browse the repository at this point in the history
  • Loading branch information
gmicol committed Jul 2, 2024
1 parent b41ef4d commit 205af18
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gen/generator.go
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ var templateFuncs = template.FuncMap{
"definedInMap": DefinedInMap,
"getValueFromMap": GetValueFromMap,
"add": func(val1, val2 int) int { return val1 + val2 },
"substract": func(val1, val2 int) int { return val1 - val2 },
"subtract": func(val1, val2 int) int { return val1 - val2 },
"isInterfaceSlice": IsInterfaceSlice,
"replace": Replace,
"lookupTestValue": LookupTestValue,
Expand Down

0 comments on commit 205af18

Please sign in to comment.