Skip to content

Commit 7d89177

Browse files
Merge pull request #68 from jackyarndley/main
Resolve minor bug in transform forward pass
2 parents a504d54 + 064df93 commit 7d89177

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)