fix(geometry): update jacobian docstring to use coords field

Update documentation example to use coords field instead of ξ field
from QuadraturePoint, matching the API change.
This commit is contained in:
Jukka Aho
2025-12-12 23:41:34 +02:00
parent 92b3df4526
commit fd4dc1cb28
+1 -1
View File
@@ -133,7 +133,7 @@ sum(dN_dx) # ≈ Vec(0.0, 0.0)
# Usage in Assembly
```julia
for ip in integration_points(Gauss{2}(), Triangle())
xi = Vec(ip.ξ)
xi = Vec(ip.coords)
# Basis evaluation
N = get_basis_functions(Triangle(), Lagrange{Triangle, 1}(), xi)