Sort functions by name alphabetically

This commit is contained in:
Radek Simko 2015-05-03 15:51:15 +01:00
parent 1ebe117085
commit 841a1f08da
1 changed files with 2 additions and 2 deletions

View File

@ -19,14 +19,14 @@ var Funcs map[string]ast.Function
func init() {
Funcs = map[string]ast.Function{
"element": interpolationFuncElement(),
"file": interpolationFuncFile(),
"format": interpolationFuncFormat(),
"formatlist": interpolationFuncFormatList(),
"join": interpolationFuncJoin(),
"element": interpolationFuncElement(),
"length": interpolationFuncLength(),
"replace": interpolationFuncReplace(),
"split": interpolationFuncSplit(),
"length": interpolationFuncLength(),
// Concat is a little useless now since we supported embeddded
// interpolations but we keep it around for backwards compat reasons.