Skip to content

Commit 2a82c35

Browse files
sabiwarajosevalim
authored andcommitted
Fix unused for optimization (#12252)
1 parent 1f14211 commit 2a82c35

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/elixir/src/elixir_erl_for.erl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ translate_into(Meta, Cases, Expr, Opts, S) ->
2929
{TInto, SI} =
3030
case lists:keyfind(into, 1, Opts) of
3131
{into, Into} -> elixir_erl_pass:translate(Into, Ann, S);
32-
false -> {{nil, Ann}, S}
32+
false -> {false, S}
3333
end,
3434

3535
TUniq = lists:keyfind(uniq, 1, Opts) == {uniq, true},

0 commit comments

Comments
 (0)