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 6122d6a commit e9495baCopy full SHA for e9495ba
src/fsharp/symbols/SymbolHelpers.fs
@@ -650,7 +650,10 @@ module internal SymbolHelpers =
650
let mutable ToolTipFault = None
651
652
let GetXmlCommentForMethInfoItem infoReader m d (minfo: MethInfo) =
653
- GetXmlCommentForItemAux (if minfo.HasDirectXmlComment || minfo.XmlDoc.NonEmpty then Some minfo.XmlDoc else None) infoReader m d
+ if minfo.HasDirectXmlComment || minfo.XmlDoc.NonEmpty then
654
+ GetXmlCommentForItemAux (Some minfo.XmlDoc) infoReader m d
655
+ else
656
+ mkXmlComment (GetXmlDocSigOfMethInfo infoReader m minfo)
657
658
let FormatTyparMapping denv (prettyTyparInst: TyparInst) =
659
[ for (tp, ty) in prettyTyparInst ->
0 commit comments