Skip to content

Commit 064df93

Browse files
committed
Fixed minor bug for transform forward pass
1 parent a504d54 commit 064df93

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Core/transform.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -206,7 +206,7 @@ for (order, axfun, _axfun, pfun, _pfun, _pfwd, _pbwd, dfun) in zip(
206206
# Optimising this transformation would probably demand a significant
207207
# portion of time with respect to the time required by the whole transformation
208208
# therefore forward pass is used without any optimisation
209-
return $(axfun)(frame, p2.axesid, axes, t) * $(_pfwd)(frame, path, p1, t)
209+
return $(axfun)(frame, p2.axesid, axes, t) * $(_pfwd)(frame, p1, path, t)
210210
end
211211
end
212212

0 commit comments

Comments
 (0)