Removed incorrect comment

This commit is contained in:
Chad Stearns 2020-06-27 16:12:59 -04:00
parent 20b0e986ad
commit 2f440ecb6a

View file

@ -1803,10 +1803,7 @@ fn list_push<'a, 'ctx, 'env>(
// The output list length, which is the old list length + 1
let new_list_len = env.builder.build_int_add(
ctx.i64_type().const_int(
// 0 as in 0 index of our new list
1 as u64, false,
),
ctx.i64_type().const_int(1 as u64, false),
list_len,
"new_list_length",
);