Fix 2nd binding of string reverse for list reverse (#10380)

This commit is contained in:
Donald Guy 2020-12-14 04:57:08 -05:00 committed by GitHub
parent d8277aa455
commit 889e42443a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -80,7 +80,7 @@ func Functions(basedir string) map[string]function.Function {
"pathexpand": filesystem.PathExpandFunc,
"pow": stdlib.PowFunc,
"range": stdlib.RangeFunc,
"reverse": stdlib.ReverseFunc,
"reverse": stdlib.ReverseListFunc,
"replace": stdlib.ReplaceFunc,
"regex_replace": stdlib.RegexReplaceFunc,
"rsadecrypt": crypto.RsaDecryptFunc,