Skip to content
This repository has been archived by the owner on Oct 4, 2021. It is now read-only.

Commit

Permalink
Fixed 'Bug 10215 - Missing space in tooltip'.
Browse files Browse the repository at this point in the history
  • Loading branch information
mkrueger committed Feb 12, 2013
1 parent e939ca7 commit b409236
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -1215,7 +1215,7 @@ public TooltipInformation GetKeywordTooltip (string keyword, AstNode hintNode)
break;
case "static":
result.SignatureMarkup = Highlight ("static", "keyword.modifier") + keywordSign;
result.SummaryMarkup = "Use the " + Highlight ("static", "keyword.modifier") + "modifier to declare a static member, which belongs to the type itself rather than to a specific object.";
result.SummaryMarkup = "Use the " + Highlight ("static", "keyword.modifier") + " modifier to declare a static member, which belongs to the type itself rather than to a specific object.";
break;
case "struct":
result.SignatureMarkup = Highlight ("struct", "keyword.declaration") + keywordSign;
Expand Down

0 comments on commit b409236

Please sign in to comment.