Skip to content

Commit 4459f42

Browse files
author
a
committed
found typo
1 parent 5daea61 commit 4459f42

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/expr.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,6 @@ children(e::Expr) = e.args
1010
operation(e::Expr) = iscall(e) ? first(children(e)) : error("operation called on a non-function call expression")
1111
arguments(e::Expr) = iscall(e) ? @view(e.args[2:end]) : error("arguments called on a non-function call expression")
1212

13-
function maketerm(::Type{Expr}, head, args, symtype=nothing, metadata=nothing)
13+
function maketerm(::Type{Expr}, head, args, type=nothing, metadata=nothing)
1414
Expr(head, args...)
1515
end

0 commit comments

Comments
 (0)