Skip to content

Commit a33a721

Browse files
fixup! refactor: remove usages of array_term
1 parent 5732ce3 commit a33a721

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/systems/abstractsystem.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -514,7 +514,7 @@ function (f::Initial)(x)
514514
# instead of `Initial(x[1])` create `Initial(x)[1]`
515515
# which allows parameter indexing to handle this case automatically.
516516
arr = arguments(x)[1]
517-
f(arr)[arguments(x)[2:end]]
517+
f(arr)[arguments(x)[2:end]...]
518518
else
519519
term(f, x; type = symtype(x), shape = SU.shape(x))
520520
end

0 commit comments

Comments
 (0)