We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9b0c96d commit cbe607bCopy full SHA for cbe607b
vlib/v/fmt/fmt.v
@@ -79,7 +79,7 @@ pub fn (mut f Fmt) process_file_imports(file &ast.File) {
79
for imp in file.imports {
80
f.mod2alias[imp.mod.all_after_last('.')] = imp.alias
81
for sym in imp.syms {
82
- f.mod2alias['$imp.mod\.$sym.name'] = sym.name
+ f.mod2alias['${imp.mod}.$sym.name'] = sym.name
83
f.mod2alias[sym.name] = sym.name
84
}
85
0 commit comments