Skip to content
This repository has been archived by the owner on Nov 8, 2022. It is now read-only.

Commit

Permalink
Fix typo in last commit
Browse files Browse the repository at this point in the history
  • Loading branch information
Paul H. Liu committed Dec 28, 2015
1 parent b046a90 commit e21fb36
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/domain-ir.jl
Original file line number Diff line number Diff line change
Expand Up @@ -1298,7 +1298,7 @@ function translate_call_map(state, env, typ, fun, args::Array{Any,1})
end
args[i] = arg_
end
expr = endswith(string(fun), '!') ? mk_mmap(args, domF) : mk_mmap!(args, domF)
expr = endswith(string(fun), '!') ? mk_mmap!(args, domF) : mk_mmap(args, domF)
expr = mmapRemoveDupArg!(expr)
expr.typ = typ
return expr
Expand Down

0 comments on commit e21fb36

Please sign in to comment.