diff options
Diffstat (limited to 'compiler/procfind.nim')
-rw-r--r-- | compiler/procfind.nim | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/compiler/procfind.nim b/compiler/procfind.nim index 2db6247e1..cfb9ee2ca 100644 --- a/compiler/procfind.nim +++ b/compiler/procfind.nim @@ -31,7 +31,8 @@ proc equalGenericParams(procA, procB: PNode): bool = result = true proc SearchForProc*(c: PContext, fn: PSym, tos: int): PSym = - # Searchs for the fn in the symbol table. If the parameter lists are exactly + # Searchs for a forward declaration or a "twin" symbol of fn + # in the symbol table. If the parameter lists are exactly # the same the sym in the symbol table is returned, else nil. var it: TIdentIter result = initIdentIter(it, c.tab.stack[tos], fn.Name) |