diff options
author | Araq <rumpf_a@web.de> | 2019-07-11 00:28:20 +0200 |
---|---|---|
committer | Araq <rumpf_a@web.de> | 2019-07-11 00:28:20 +0200 |
commit | cb3c3c306c6507a09c15da26828a39fbbd4dbc66 (patch) | |
tree | 5543b3ddfb23e6a748db4e475a103fe9b1cf1f6d /compiler/suggest.nim | |
parent | 38bdf1cd7f4d5c6e22a70ee32438beccc7e36690 (diff) | |
download | Nim-cb3c3c306c6507a09c15da26828a39fbbd4dbc66.tar.gz |
minor style changes
Diffstat (limited to 'compiler/suggest.nim')
-rw-r--r-- | compiler/suggest.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/suggest.nim b/compiler/suggest.nim index 705d723d1..9e738e8a6 100644 --- a/compiler/suggest.nim +++ b/compiler/suggest.nim @@ -362,7 +362,7 @@ proc suggestFieldAccess(c: PContext, n, field: PNode, outputs: var Suggestions) # error: no known module name: typ = nil else: - let m = c.graph.importModuleCallback(c.graph, c.module, fileInfoIdx(c.config, fullpath)) + let m = c.graph.importModuleCallback(c.graph, c.module, fileInfoIdx(c.config, fullPath)) if m == nil: typ = nil else: for it in items(n.sym.tab): |