We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 740a39d commit 00e2161Copy full SHA for 00e2161
src/fsharp/symbols/SymbolHelpers.fs
@@ -648,7 +648,10 @@ module internal SymbolHelpers =
648
let mutable ToolTipFault = None
649
650
let GetXmlCommentForMethInfoItem infoReader m d (minfo: MethInfo) =
651
- GetXmlCommentForItemAux (if minfo.HasDirectXmlComment || minfo.XmlDoc.NonEmpty then Some minfo.XmlDoc else None) infoReader m d
+ if minfo.HasDirectXmlComment || minfo.XmlDoc.NonEmpty then
652
+ GetXmlCommentForItemAux (Some minfo.XmlDoc) infoReader m d
653
+ else
654
+ mkXmlComment (GetXmlDocSigOfMethInfo infoReader m minfo)
655
656
let FormatTyparMapping denv (prettyTyparInst: TyparInst) =
657
[ for (tp, ty) in prettyTyparInst ->
0 commit comments