The front page opens with:
@experimental "convergence not established below β ≈ 0.1" energy(m::Model) = m.β * correction(m)
Model and correction are defined nowhere. Measured: UndefVarError: Model not defined.
This is the defect the registration review named for the README. It was corrected there (#11) and not here — one file over, where a reader arriving at the documentation site meets it first.
Fix
Make the example self-contained, and make it a @example block so Documenter runs it during the docs build rather than leaving it inert:
┌ Error: failed to run `@example` block in docs/src/index.md:14-20
│ UndefVarError: `Model` not defined in `Main.__atexample__named__frontpage`
That is the guard the review suggested, applied to the block that needs it most.
The front page opens with:
Modelandcorrectionare defined nowhere. Measured:UndefVarError:Modelnot defined.This is the defect the registration review named for the README. It was corrected there (#11) and not here — one file over, where a reader arriving at the documentation site meets it first.
Fix
Make the example self-contained, and make it a
@exampleblock so Documenter runs it during the docs build rather than leaving it inert:That is the guard the review suggested, applied to the block that needs it most.