Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions stdlib/std.jsonnet
Original file line number Diff line number Diff line change
Expand Up @@ -1654,7 +1654,7 @@ limitations under the License.
true
else
local e = arr[idx];
assert std.isBoolean(e) : std.format('element "%s" of type %s is not a boolean', e, std.type(e));
assert std.isBoolean(e) : 'element "%s" of type %s is not a boolean' % [e, std.type(e)];
if !e then
false
else
Expand All @@ -1669,7 +1669,7 @@ limitations under the License.
false
else
local e = arr[idx];
assert std.isBoolean(e) : std.format('element "%s" of type %s is not a boolean', e, std.type(e));
assert std.isBoolean(e) : 'element "%s" of type %s is not a boolean' % [e, std.type(e)];
if e then
true
else
Expand Down