Skip to content

Commit

Permalink
fix misleading var names
Browse files Browse the repository at this point in the history
  • Loading branch information
rafaqz committed Feb 5, 2019
1 parent 5e8b3fe commit 51d1744
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Mixers.jl
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ firsthead(f, ex::Expr, match) =
end
firsthead(f, ex, match) = nothing

mergetypes(f1, f2, prepend) = prepend ? union(f2, f1) : union(f1, f2)
mergefields(t1, t2, prepend) = prepend ? vcat(t2, t1) : vcat(t1, t2)
mergetypes(t1, t2, prepend) = prepend ? union(t2, t1) : union(t1, t2)
mergefields(f1, f2, prepend) = prepend ? vcat(f2, f1) : vcat(f1, f2)

end # module

0 comments on commit 51d1744

Please sign in to comment.