Skip to content

Commit

Permalink
Fix misnamed func ref in example script
Browse files Browse the repository at this point in the history
  • Loading branch information
doorisajar committed Apr 4, 2024
1 parent 1b6ba34 commit 07533b8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/demo.jl
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ powfunc(x) = x^3

powfuncprime(x) = 3x^2

forward_diff(expfunc, 5.0) == powfuncprime(5.0)
forward_diff(powfunc, 5.0) == powfuncprime(5.0)

powfancyfunc(x) = 4x^3 + 2x^2

Expand Down

0 comments on commit 07533b8

Please sign in to comment.