Update quick_notes.qmd

Typo fixing
This commit is contained in:
Ali Gürbüz
2025-07-27 11:07:38 -07:00
committed by GitHub
parent 9dd9fa76b9
commit 22896a36ea

View File

@@ -97,7 +97,7 @@ In the following, the defined function, `Derivative`, returns an anonymously def
```{julia}
Derivatve(f::Function) = x -> ForwardDiff.derivative(f, x) # ForwardDiff is loaded in CalculusWithJulia
Derivative(f::Function) = x -> ForwardDiff.derivative(f, x) # ForwardDiff is loaded in CalculusWithJulia
```
(The `D` function of `CalculusWithJulia` implements something similar.)