2 instantiations of Suggestion
Microsoft.DotNet.Cli.Utils (2)
TypoCorrection.cs (2)
27var possibleSuggestions = possibleTokens.Select((string possibleMatch) => new Suggestion(possibleMatch, possibleMatch.Length)).ToArray(); 65.Select(s => new Suggestion(s.PossibleMatch, GetDistance(s.PossibleMatch, currentToken)))
5 references to Suggestion
Microsoft.DotNet.Cli.Utils (5)
TypoCorrection.cs (5)
42var matchByContains = new List<Suggestion>(); 80private static IEnumerable<Suggestion> FilterByShortestDistance(this IEnumerable<Suggestion> possibleMatches) 167private static Suggestion SetSelection(Suggestion s)