diff options
-rw-r--r-- | nimsuggest/nimsuggest.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nimsuggest/nimsuggest.nim b/nimsuggest/nimsuggest.nim index 3b2615891..b9fff466d 100644 --- a/nimsuggest/nimsuggest.nim +++ b/nimsuggest/nimsuggest.nim @@ -718,7 +718,7 @@ proc recompilePartially(graph: ModuleGraph, projectFileIdx = InvalidFileIdx) = func deduplicateSymInfoPair[SymInfoPair](xs: seq[SymInfoPair]): seq[SymInfoPair] = # xs contains duplicate items and we want to filter them by range because the # sym may not match. This can happen when xs contains the same definition but - # with different signature becase suggestSym might be called multiple times + # with different signature because suggestSym might be called multiple times # for the same symbol (e. g. including/excluding the pragma) result = @[] for itm in xs.reversed: |