summary refs log tree commit diff stats
path: root/compiler/suggest.nim
diff options
context:
space:
mode:
authorAraq <rumpf_a@web.de>2019-07-11 00:28:20 +0200
committerAraq <rumpf_a@web.de>2019-07-11 00:28:20 +0200
commitcb3c3c306c6507a09c15da26828a39fbbd4dbc66 (patch)
tree5543b3ddfb23e6a748db4e475a103fe9b1cf1f6d /compiler/suggest.nim
parent38bdf1cd7f4d5c6e22a70ee32438beccc7e36690 (diff)
downloadNim-cb3c3c306c6507a09c15da26828a39fbbd4dbc66.tar.gz
minor style changes
Diffstat (limited to 'compiler/suggest.nim')
-rw-r--r--compiler/suggest.nim2
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):