提交 53eade2f 编写于 作者: C CyrusNajmabadi

Fix up cod.e

上级 7de98972
......@@ -160,4 +160,4 @@ private Guid GetOptionPageGuidForOptionName(string optionName, string optionLang
return default(Guid);
}
}
}
}
\ No newline at end of file
......@@ -83,8 +83,11 @@ public static string GetHelpLinkToolTipText(DiagnosticData item)
// We make sure not to use Uri.AbsoluteUri for the url displayed in the tooltip so that the url displayed in the tooltip stays human readable.
if (helpUri != null)
{
return string.Format(ServicesVSResources.Get_help_for_0_1_2_3, item.Id,
isBing ? ServicesVSResources.from_Bing : null, Environment.NewLine, helpUri);
var prefix = isBing
? string.Format(ServicesVSResources.Get_help_for_0_from_Bing, item.Id)
: string.Format(ServicesVSResources.Get_help_for_0, item.Id);
return $"{prefix}\r\n{helpUri}";
}
return null;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册