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

Commit

Permalink
typo fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
forki committed Jul 17, 2014
1 parent 271e70c commit 4713dd6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/FSharpVSPowerTools.Logic/RenameSuggestions.fs
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ let private getSubParts (name:string) parts =
|> List.map String.Concat
|> List.filter (fun s -> name.Contains(s))

let fastSuggesttions (kind:Kind) (name:string) =
let fastSuggestions (kind:Kind) (name:string) =
let parts = splitInParts name
match kind with
| Variable -> highPrio name :: suggestIndexNames name
Expand All @@ -167,7 +167,7 @@ let suggest (kind:Kind) (name:string) =
use hunspell = createHunspell()
let parts = splitInParts name

fastSuggesttions kind name
fastSuggestions kind name
|> List.append (suggestSynonyms hunspell parts)
|> List.append (suggestCorrections hunspell [name])
|> List.append (suggestCorrections hunspell parts)
Expand Down

0 comments on commit 4713dd6

Please sign in to comment.