How to document a struct with two constructors?

Found the answer myself. I just need to use both signatures in the .md file that is used by Documenter.jl:

```@docs
Section
Section(LE_point::Vector{Float64}, TE_point::Vector{Float64})
.```

(The dot in the last line should not be there.)

4 Likes