提交 437ce267 编写于 作者: D David Barbet

Fix doc comment.

上级 3e2b28bc
......@@ -95,10 +95,10 @@ private async Task<List<LSP.Location>> GetDefinitionsWithDefinitionsService(Docu
return locations;
}
// <summary>
// Using the find usages service is more expensive than using the definitions service because a lot of unnecessary information is computed. However, some languages
// don't provide an <see cref="IGoToDefinitionService"> implementation that will return definitions so we must use <see cref="IFindUsagesService">.
/// <summary>
/// Using the find usages service is more expensive than using the definitions service because a lot of unnecessary information is computed. However, some languages
/// don't provide an <see cref="IGoToDefinitionService"/> implementation that will return definitions so we must use <see cref="IFindUsagesService"/>.
/// </summary>
private async Task<List<LSP.Location>> GetDefinitionsWithFindUsagesService(Document document, int pos, CancellationToken cancellationToken)
{
var findUsagesService = document.Project.LanguageServices.GetService<IFindUsagesService>();
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册