You got the colon and parens in reverse order.

But I came to say here this. Once you know the consistent style of proc 
signatures, it's really easy to search for things.

The procs are defined as:
    
    
    proc foo(arg1: Type1; ..): ReturnType =
    
    
    Run

So to search for procs returning that ReturnType, you just search for `): 
ReturnType`.

Reply via email to