Skip to content

Commit 93a8f17

Browse files
committed
Sort children for inspection via AbstractTrees
1 parent fe7ed96 commit 93a8f17

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/inspect.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ the expression.
3535
This function is used internally for printing via AbstractTrees.
3636
"""
3737
function AbstractTrees.children(x::Symbolic)
38-
iscall(x) ? arguments(x; sort = true) : isexpr(x) ? children(x) : ()
38+
iscall(x) ? arguments(x; sort = true) : isexpr(x) ? children(x; sort = true) : ()
3939
end
4040

4141
"""

0 commit comments

Comments
 (0)