From 5636cff69576426f1d1fbdbeb1d58866d069f67e Mon Sep 17 00:00:00 2001 From: abhro <5664668+abhro@users.noreply.github.com> Date: Sat, 22 Nov 2025 08:43:22 -0500 Subject: [PATCH] Fix syntax for `@docs` block in types.md Typo fix, `@doc` not a recognized keyword by Documenter.jl --- docs/src/types.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/src/types.md b/docs/src/types.md index f0ed23836a..8a738731ac 100644 --- a/docs/src/types.md +++ b/docs/src/types.md @@ -12,14 +12,14 @@ abstract type Sampleable{F<:VariateForm,S<:ValueSupport} end It has two type parameters that define the kind of samples that can be drawn therefrom. -```@doc +```@docs Distributions.Sampleable Base.rand(::Distributions.Sampleable) ``` ### VariateForm -```@doc +```@docs Distributions.VariateForm ```