Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
Useful contribution by @asayers
  • Loading branch information
jaspervdj committed Oct 21, 2024
1 parent 0508325 commit 72cf0cb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/Patat/Transition/Dissolve.hs
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ transition config (Size rows cols) initial final rgen =
-- Select the initial or final value depending on the noise.
frame :: Double -> Matrix
frame t = V.zipWith3
(\treshold l r -> if t < treshold then l else r)
(\threshold l r -> if t < threshold then l else r)
noise
initial
final
Expand Down

0 comments on commit 72cf0cb

Please sign in to comment.