fsharp icon indicating copy to clipboard operation
fsharp copied to clipboard

Missing XML docs in type parameter tooltips

Open kerams opened this issue 3 years ago • 0 comments

These tooltips have been added in https://github.com/dotnet/fsharp/pull/12933. Unless I've wired something wrong, they should include XML docs (typeparam is listed as a supported tag).

/// <summary>Wrap</summary>
/// <typeparam name="a">Param</typeparam>
type Wrap<'a> =
    | Bah of 'a

Hovering over 'a will just display an icon and the parameter name. Using name="'a" is the same.

kerams avatar Jun 14 '22 18:06 kerams