Skip to content

Commit

Permalink
Merge pull request #32030 from AArnott/patch-1
Browse files Browse the repository at this point in the history
Random code comment typo fixes
  • Loading branch information
sharwell authored Jan 2, 2019
2 parents 94661ea + af5aafb commit 2b3d783
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ private AbstractTableDataSourceFindUsagesContext StartSearchWorker(string title,
var window = _vsFindAllReferencesService.StartSearch(title);

// Keep track of the users preference for grouping by definition if we don't already know it.
// We need this because we disable the Definition column when wer're not showing references
// We need this because we disable the Definition column when we're not showing references
// (i.e. GoToImplementation/GoToDef). However, we want to restore the user's choice if they
// then do another FindAllReferences.
var desiredGroupingPriority = _workspace.Options.GetOption(FindUsagesOptions.DefinitionGroupingPriority);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -91,10 +91,10 @@ private async Task ProcessAsync(ProjectToDocumentMap projectToDocumentMap)
// it.
// For each connected component, we'll process the individual projects from bottom to
// top. i.e. we'll first process the projects with no dependencies. Then the projects
// that depend on those projects, and so and. This way we always have creates the
// that depend on those projects, and so on. This way we always have created the
// dependent compilations when they're needed by later projects. If we went the other
// way (i.e. processed the projects with lots of project dependencies first), then we'd
// have to create all their depedent compilations in order to get their compilation.
// have to create all their dependent compilations in order to get their compilation.
// This would be very expensive and would take a lot of time before we got our first
// result.
var connectedProjects = _dependencyGraph.GetDependencySets(_cancellationToken);
Expand Down

0 comments on commit 2b3d783

Please sign in to comment.