From f0400eef6830d02d4e3d58f930bf95260b5e485f Mon Sep 17 00:00:00 2001 From: Ikko Ashimine Date: Sun, 6 Nov 2022 04:32:28 +0900 Subject: [PATCH] Fix typo in nimsuggest.nim (#20767) becase -> because --- nimsuggest/nimsuggest.nim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nimsuggest/nimsuggest.nim b/nimsuggest/nimsuggest.nim index 3b26158914..b9fff466d8 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: