Skip to content

Commit

Permalink
- Fixed incorrect label in symbol tooltip.
Browse files Browse the repository at this point in the history
  • Loading branch information
wmjordan committed Mar 20, 2019
1 parent 7addb50 commit 7c73b68
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Codist/Helpers/WpfHelper.VS.cs
Original file line number Diff line number Diff line change
Expand Up @@ -245,7 +245,7 @@ void ShowSymbolToolTip(object sender, ToolTipEventArgs e) {
content.AppendLine();
}
c = true;
content.Append("return value: ").Append(t.ToDisplayString(QuickInfoSymbolDisplayFormat), true);
content.Append("return type: ").Append(t.ToDisplayString(QuickInfoSymbolDisplayFormat), true);
}
var f = _Symbol as IFieldSymbol;
if (f != null && f.IsConst) {
Expand Down

0 comments on commit 7c73b68

Please sign in to comment.