Skip to content

Commit cbd2fb6

Browse files
authored
Merge pull request #37 from petermm/fix-check
Fix check function
2 parents 552c570 + 76c86f3 commit cbd2fb6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/mix/tasks/check.ex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -193,7 +193,7 @@ defmodule Mix.Tasks.Atomvm.Check do
193193
missing_instructions = MapSet.difference(instructions_set, avail_instructions)
194194

195195
if MapSet.size(missing_instructions) != 0 do
196-
if MapSet.member?(missing, "elixir_erl_pass:parens_map_field/2") do
196+
if MapSet.member?(missing_instructions, "elixir_erl_pass:parens_map_field/2") do
197197
IO.puts("""
198198
Error:
199199
using module.function() notation (with parentheses) to fetch

0 commit comments

Comments
 (0)