merge main

This commit is contained in:
jverzani
2025-07-27 15:28:39 -04:00
2 changed files with 3 additions and 1 deletions

2
.gitignore vendored
View File

@@ -14,4 +14,6 @@ Changelog.md
default.profraw
/quarto/default.profraw
/*/*/default.profraw
/*/bonepile.qmd
/*/*/bonepile.qmd
/*/*_files

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.)