Skip to content

Commit

Permalink
Fix typo of foldl
Browse files Browse the repository at this point in the history
  • Loading branch information
sparkprime committed Mar 12, 2016
1 parent fff0a53 commit f083675
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ local amis_debian = import "../amis/debian.jsonnet";
},
versions:: {},
deployment:: {},
local merge(objs) = std.fold(function(a, b) a + b, objs, {}),
local merge(objs) = std.foldl(function(a, b) a + b, objs, {}),
local instances = merge([
{
["${-}-%s-%d" % [vname, i]]:
Expand Down

0 comments on commit f083675

Please sign in to comment.