Skip to content

Commit

Permalink
Fix interpolating possible tuple type
Browse files Browse the repository at this point in the history
  • Loading branch information
RoyalIcing committed Aug 27, 2024
1 parent 8b46b01 commit 0bf68b8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/orb/instruction/const.ex
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ defmodule Orb.Instruction.Const do
end

def wrap(push_type, value) do
wrap(push_type, value, "#{Ops.to_primitive_type(push_type)}.const")
wrap(push_type, value, "#{inspect(Ops.to_primitive_type(push_type))}.const")
end

def wrap(push_type, value, instruction_identifier) when is_number(value) do
Expand Down

0 comments on commit 0bf68b8

Please sign in to comment.