I would like to refer to exactly one version of a function that is implemented for several subtypes in Documenter, see
here. Especially the line 28 which reads
manifold_dimension(::SymmetricPositiveDefinite{N}) where N
and I hoped that this would just produce the documentation for this one type (see here for its definition).
But currently it prints all available implementations from within Manifold.jl, see here. Even the Link of the anchor mentions the right signature, but the result prints all.
I am sorry for not being able to narrow that down to an MWE but I hoped that the exact signature would restrict the documentations to exactly this one case. Why is that not happening?
Or phrased differently (something that would also solve the problem): Is it possible to restrict a @docs-block to just one file (like one can to for @autodocs)? That would be great, too.